]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - db/statusnet_pg.sql
Revert "fixed stay comma"
[quix0rs-gnu-social.git] / db / statusnet_pg.sql
index 9cb8a944f30371c37a20ec7b8692acc12e746f72..020bfd967052051fa3cab3ee1bea2d54417f5583 100644 (file)
@@ -1,4 +1,3 @@
-BEGIN;
 /* local and remote users have profiles */
 create sequence profile_seq;
 create table profile (
@@ -137,7 +136,7 @@ create table notice (
     lon decimal(10,7) /* comment 'longitude'*/ ,
     location_id integer /* comment 'location id if possible'*/ ,
     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) */
 );
@@ -590,4 +589,3 @@ create table login_token (
     primary key (user_id)
 );
 
-COMMIT;