]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
moved creation of design table earlier than user_group
authorBrenda Wallace <shiny@cpan.org>
Wed, 15 Jul 2009 01:36:15 +0000 (13:36 +1200)
committerBrenda Wallace <shiny@cpan.org>
Wed, 15 Jul 2009 06:51:12 +0000 (18:51 +1200)
db/laconica_pg.sql

index e70573bfba99ca58b4ee46e6def54c84f2d3e90f..78791adaa3056606924457452c9e3b14bf8dc608 100644 (file)
@@ -1,4 +1,3 @@
-    design_id integer comment 'id of a design' references design(id),\r
 /* local and remote users have profiles */\r
 \r
 create sequence profile_seq;\r
@@ -376,6 +375,20 @@ 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
@@ -489,19 +502,6 @@ create table file_to_post (
     unique(file_id, post_id)\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
 create table group_block (\r
    group_id integer not null /* comment 'group profile is blocked from' */ references user_group (id),\r
    blocked integer not null /* comment 'profile that is blocked' */references profile (id),\r