mirror of
https://github.com/e107inc/e107.git
synced 2025-05-04 11:24:54 +02:00
11 lines
394 B
PHP
11 lines
394 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 tinyint(3) 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;
|