]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add design table to DB
authorEvan Prodromou <evan@controlyourself.ca>
Sat, 23 May 2009 00:54:07 +0000 (20:54 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Sat, 23 May 2009 00:54:07 +0000 (20:54 -0400)
db/laconica.sql

index 0b20bc172c2bdda55940fcdc82e97abad1f47064..d42c20e2a13242a4016e18ca9fd1267d90550b42 100644 (file)
@@ -482,3 +482,13 @@ create table file_to_post (
 
     unique(file_id, post_id)
 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+
+create table design (
+    id integer primary key auto_increment comment 'design ID',
+    backgroundcolor integer comment 'main background color',
+    contentcolor integer comment 'content area background color',
+    sidebarcolor integer comment 'sidebar background color',
+    textcolor integer comment 'text color',
+    linkcolor integer comment 'link color',
+    backgroundimage varchar(255) comment 'background image, if any'
+) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;