Commit fd1c4a66 authored by Karl Denninger's avatar Karl Denninger

ZP-1284 Change tabs to spaces. Released under the Affero GNU General Public...

ZP-1284 Change tabs to spaces. Released under the Affero GNU General Public License (AGPL) version 3.
parent 06140c80
create table note create table note
(ordinal int primary key, login text, domain text, (ordinal int primary key, login text, domain text,
inserted timestamp with time zone default now(), inserted timestamp with time zone default now(),
modified timestamp with time zone default now(), modified timestamp with time zone default now(),
deleted boolean default false, subject text, content text, deleted boolean default false, subject text, content text);
categories text);
create table categories create table categories
(ordinal int references note(ordinal) on update cascade (ordinal int references note(ordinal) on update cascade
on delete cascade, tag text); on delete cascade, tag text);
create index note_login on note using btree(login, domain); create index note_login on note using btree(login, domain);
create index tag_ordinal on categories using btree(ordinal); create index tag_ordinal on categories using btree(ordinal);
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment