]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
move design items before timestamps
authorEvan Prodromou <evan@controlyourself.ca>
Sun, 24 May 2009 03:16:52 +0000 (23:16 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Sun, 24 May 2009 03:16:52 +0000 (23:16 -0400)
db/laconica.sql

index c87340e8e09a1e13e24356a5ce9efbf01726a7e7..2ad482abacbc80d22ea1d327a5932233ae644dc9 100644 (file)
@@ -70,11 +70,12 @@ create table user (
     autosubscribe tinyint default 0 comment 'automatically subscribe to users who subscribe to us',
     urlshorteningservice varchar(50) default 'ur1.ca' comment 'service to use for auto-shortening URLs',
     inboxed tinyint default 0 comment 'has an inbox been created for this user?',
-    created datetime not null comment 'date this record was created',
-    modified timestamp comment 'date this record was modified',
     design_id integer comment 'id of a design' references design(id),
     viewdesigns tinyint default 1 comment 'whether to view user-provided designs',
 
+    created datetime not null comment 'date this record was created',
+    modified timestamp comment 'date this record was modified',
+
     index user_smsemail_idx (smsemail)
 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci;