1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-10 20:44:48 +02:00
Files
php-e107/e107_plugins/featurebox/featurebox_sql.php
2009-09-19 19:05:16 +00:00

11 lines
395 B
PHP

CREATE TABLE featurebox (
fb_id int(10) unsigned NOT NULL auto_increment,
fb_title varchar(200) NOT NULL default '',
fb_text text NOT NULL,
fb_mode tinyint(3) unsigned NOT NULL default '0',
fb_class smallint(5) unsigned NOT NULL default '0',
fb_rendertype tinyint(1) unsigned NOT NULL default '0',
fb_template varchar(50) NOT NULL default '',
PRIMARY KEY (fb_id)
) TYPE=MyISAM;