mirror of
https://github.com/e107inc/e107.git
synced 2025-08-16 19:44:09 +02:00
Hero plugin added to core package. (Formerly known as "Bullets")
This commit is contained in:
12
e107_plugins/hero/hero_sql.php
Normal file
12
e107_plugins/hero/hero_sql.php
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE TABLE `hero` (
|
||||
`hero_id` int(10) NOT NULL AUTO_INCREMENT,
|
||||
`hero_title` varchar(255) NOT NULL,
|
||||
`hero_description` varchar(255) NOT NULL,
|
||||
`hero_image` varchar(255) NOT NULL,
|
||||
`hero_bullets` text NOT NULL,
|
||||
`hero_button1` text NOT NULL,
|
||||
`hero_button2` text NOT NULL,
|
||||
`hero_order` tinyint(3) unsigned NOT NULL default '0',
|
||||
`hero_class` int(5) default '0',
|
||||
PRIMARY KEY (hero_id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user