]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
moved design table earlier - needs to be before "user" becuase of the foreign key
authorBrenda Wallace <shiny@cpan.org>
Wed, 22 Jul 2009 09:46:23 +0000 (21:46 +1200)
committerBrenda Wallace <shiny@cpan.org>
Wed, 22 Jul 2009 09:46:23 +0000 (21:46 +1200)
db/laconica_pg.sql

index 1059da3c9981d81d573b8236cf2e3a1c227d0d4c..31210fd1e407d28160821483c7995f9a0140f95c 100644 (file)
@@ -1,4 +1,3 @@
-\r
 /* local and remote users have profiles */\r
 \r
 create sequence profile_seq;\r
@@ -41,6 +40,19 @@ create table sms_carrier (
     modified timestamp /* comment 'date this record was modified ' */\r
 );\r
 \r
+create sequence design_seq;\r
+create table design (\r
+    id bigint default nextval('design_seq') /* comment 'design ID'*/,\r
+    backgroundcolor integer /* comment 'main background color'*/ ,\r
+    contentcolor integer /*comment 'content area background color'*/ ,\r
+    sidebarcolor integer /*comment 'sidebar background color'*/ ,\r
+    textcolor integer /*comment 'text color'*/ ,\r
+    linkcolor integer /*comment 'link color'*/,\r
+    backgroundimage varchar(255) /*comment 'background image, if any'*/,\r
+    disposition int default 1 /*comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image'*/,\r
+    primary key (id)\r
+);\r
+\r
 /* local users */\r
 \r
 create table "user" (\r
@@ -378,20 +390,6 @@ create table profile_block (
 \r
 );\r
 \r
-create sequence design_seq;\r
-create table design (\r
-    id bigint default nextval('design_seq') /* comment 'design ID'*/,\r
-    backgroundcolor integer /* comment 'main background color'*/ ,\r
-    contentcolor integer /*comment 'content area background color'*/ ,\r
-    sidebarcolor integer /*comment 'sidebar background color'*/ ,\r
-    textcolor integer /*comment 'text color'*/ ,\r
-    linkcolor integer /*comment 'link color'*/,\r
-    backgroundimage varchar(255) /*comment 'background image, if any'*/,\r
-    disposition int default 1 /*comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image'*/,\r
-    primary key (id)\r
-);\r
-\r
-\r
 create sequence user_group_seq;\r
 create table user_group (\r
 \r