1
0
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:
e107steved
2008-12-10 22:41:39 +00:00
parent a96c38306f
commit b9bd926c65
5 changed files with 87 additions and 121 deletions

View 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;