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