summaryrefslogtreecommitdiff
path: root/db/laconica.sql
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-02-28 20:32:53 -0800
committerEvan Prodromou <evan@controlyourself.ca>2009-02-28 20:32:53 -0800
commit1d610d3c6f9bb15a5cea93758ddd8d0ce64099f6 (patch)
treec2b6bbaf9be3ed27841c7a81f652ee21d048f552 /db/laconica.sql
parentb70218dc437c5decc8b27a2bb70e2e1b6ec6e9e3 (diff)
don't use semicolons in comments
Diffstat (limited to 'db/laconica.sql')
-rw-r--r--db/laconica.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/laconica.sql b/db/laconica.sql
index dd93a727b..c2cd887de 100644
--- a/db/laconica.sql
+++ b/db/laconica.sql
@@ -171,7 +171,7 @@ create table token (
tok char(32) not null comment 'identifying value',
secret char(32) not null comment 'secret value',
type tinyint not null default 0 comment 'request or access',
- state tinyint default 0 comment 'for requests; 0 = initial, 1 = authorized, 2 = used',
+ state tinyint default 0 comment 'for requests, 0 = initial, 1 = authorized, 2 = used',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
@@ -344,7 +344,7 @@ create table notice_inbox (
user_id integer not null comment 'user receiving the message' references user (id),
notice_id integer not null comment 'notice received' references notice (id),
created datetime not null comment 'date the notice was created',
- source tinyint default 1 comment 'reason it is in the inbox; 1=subscription',
+ source tinyint default 1 comment 'reason it is in the inbox, 1=subscription',
constraint primary key (user_id, notice_id),
index notice_inbox_notice_id_idx (notice_id)