fixed stay comma

This commit is contained in:
Brenda Wallace 2010-01-10 14:03:42 +13:00
parent f396701b64
commit 2b273be400
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,4 @@
BEGIN;
/* local and remote users have profiles */ /* local and remote users have profiles */
create sequence profile_seq; create sequence profile_seq;
create table profile ( create table profile (
@ -136,7 +137,7 @@ create table notice (
lon decimal(10,7) /* comment 'longitude'*/ , lon decimal(10,7) /* comment 'longitude'*/ ,
location_id integer /* comment 'location id if possible'*/ , location_id integer /* comment 'location id if possible'*/ ,
location_ns integer /* comment 'namespace for location'*/ , location_ns integer /* comment 'namespace for location'*/ ,
repeat_of integer /* comment 'notice this is a repeat of' */ references notice (id) , repeat_of integer /* comment 'notice this is a repeat of' */ references notice (id)
/* FULLTEXT(content) */ /* FULLTEXT(content) */
); );
@ -589,3 +590,4 @@ create table login_token (
primary key (user_id) primary key (user_id)
); );
COMMIT;