diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-06-17 02:35:51 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-06-17 02:35:51 -0700 |
commit | 76cbeff33c9659cacbb57943056aabcb1517ca5c (patch) | |
tree | 0d26138c7439ec9bc50fad56a6030439d57c4c9e /db/laconica.sql | |
parent | ea5d46a94d377675eb06dc57757d0e4c743f8a54 (diff) |
Update background image settings to use bitflags
Diffstat (limited to 'db/laconica.sql')
-rw-r--r-- | db/laconica.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/laconica.sql b/db/laconica.sql index 1f302de16..b018afec8 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -496,7 +496,7 @@ create table design ( textcolor integer comment 'text color', linkcolor integer comment 'link color', backgroundimage varchar(255) comment 'background image, if any', - tile tinyint default 0 comment 'tile background image' + disposition tinyint default 1 comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image' ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; create table group_block ( |