1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 04:10:38 +02:00

featurebox front-end - done, dynamic part and cleanup in progress

This commit is contained in:
secretr
2009-12-09 18:33:43 +00:00
parent 11d37fdc76
commit c344133a74
9 changed files with 381 additions and 105 deletions

View File

@@ -19,10 +19,10 @@ CREATE TABLE featurebox_category (
`fb_category_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`fb_category_title` varchar(200) NOT NULL DEFAULT '',
`fb_category_icon` varchar(255) NOT NULL DEFAULT '',
`fb_category_layout` varchar(50) NOT NULL DEFAULT 'default',
`fb_category_template` varchar(50) NOT NULL DEFAULT 'default',
`fb_category_random` tinyint(1) unsigned NOT NULL DEFAULT '0',
`fb_category_class` smallint(5) unsigned NOT NULL DEFAULT '0',
`fb_category_limit` tinyint(3) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`fb_category_id`),
UNIQUE KEY `fb_category_layout` (`fb_category_layout`)
UNIQUE KEY `fb_category_template` (`fb_category_template`)
) TYPE=MyISAM;