1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 19:44:09 +02:00

Hero now has a background image and an image/video field. Re-install and clear db cache.

This commit is contained in:
Cameron
2020-12-17 09:57:14 -08:00
parent b6dbb86c1d
commit 50af16ab45
8 changed files with 63 additions and 30 deletions

View File

@@ -1,11 +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_description` varchar(255) default '',
`hero_bg` varchar(255) NOT NULL,
`hero_media` varchar(255) default '',
`hero_bullets` text default '',
`hero_button1` text default '',
`hero_button2` text default '',
`hero_order` tinyint(3) unsigned NOT NULL default '0',
`hero_class` int(5) default '0',
PRIMARY KEY (hero_id)