]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added missing table "design"
authorBrenda Wallace <shiny@cpan.org>
Thu, 25 Jun 2009 10:01:14 +0000 (22:01 +1200)
committerBrenda Wallace <shiny@cpan.org>
Thu, 25 Jun 2009 10:01:14 +0000 (22:01 +1200)
db/laconica_pg.sql

index f8362ae9358a210325736a780e46ce42a1757fc0..dae8b8fafe77b6e21e3d259e834d105a0b07e989 100644 (file)
@@ -486,6 +486,18 @@ 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
 /* Textsearch stuff */\r
 \r