1
0
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:
Cameron
2020-12-16 15:46:11 -08:00
parent 780a44d4fd
commit 1fe797b4d5
17 changed files with 1929 additions and 1 deletions

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