Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DROP TABLE IF EXISTS `wp_i_world_map`;
- CREATE TABLE `wp_i_world_map` (
- `id` int(11) NOT NULL,
- `name` varchar(255) DEFAULT NULL,
- `description` longtext,
- `use_defaults` int(11) DEFAULT NULL,
- `bg_color` varchar(100) DEFAULT NULL,
- `border_color` varchar(100) DEFAULT NULL,
- `border_stroke` varchar(100) DEFAULT NULL,
- `ina_color` varchar(100) DEFAULT NULL,
- `act_color` varchar(100) DEFAULT NULL,
- `marker_size` int(11) DEFAULT NULL,
- `width` varchar(100) DEFAULT NULL,
- `height` varchar(100) DEFAULT NULL,
- `aspect_ratio` int(11) DEFAULT NULL,
- `interactive` int(11) DEFAULT '1',
- `showtooltip` int(11) DEFAULT '1',
- `region` varchar(100) DEFAULT NULL,
- `display_mode` varchar(100) DEFAULT NULL,
- `map_action` varchar(100) DEFAULT NULL,
- `places` longtext,
- `custom_action` longtext,
- `custom_css` longtext,
- `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
- `image` longtext NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
- ALTER TABLE `wp_i_world_map`
- ADD UNIQUE KEY `id` (`id`);
- ALTER TABLE `wp_i_world_map`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
Advertisement
Add Comment
Please, Sign In to add comment