mirror of
https://github.com/e107inc/e107.git
synced 2025-07-28 02:10:46 +02:00
featurebox - admin logging, plugin.xml created
This commit is contained in:
10
e107_plugins/featurebox/featurebox_sql.php
Normal file
10
e107_plugins/featurebox/featurebox_sql.php
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
Reference in New Issue
Block a user