mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
13 lines
449 B
PHP
13 lines
449 B
PHP
CREATE TABLE `hero` (
|
|
`hero_id` int(10) NOT NULL AUTO_INCREMENT,
|
|
`hero_title` varchar(255) NOT NULL,
|
|
`hero_description` varchar(255) default '',
|
|
`hero_bg` varchar(255) NOT NULL,
|
|
`hero_media` varchar(255) default '',
|
|
`hero_bullets` text,
|
|
`hero_button1` text,
|
|
`hero_button2` text,
|
|
`hero_order` tinyint(3) unsigned NOT NULL default '0',
|
|
`hero_class` int(5) default '0',
|
|
PRIMARY KEY (hero_id)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |