· 8 years ago · Mar 07, 2018, 07:18 AM
1# --------------------------------------------------------
2# Table: `wp_contact_form_7`
3# --------------------------------------------------------
4
5
6#
7# Delete any existing table `wp_contact_form_7`
8#
9
10DROP TABLE IF EXISTS `wp_contact_form_7`;
11
12
13#
14# Table structure of table `wp_contact_form_7`
15#
16
17CREATE TABLE `wp_contact_form_7` (
18 `cf7_unit_id` bigint(20) unsigned NOT NULL auto_increment,
19 `title` varchar(200) NOT NULL default '',
20 `form` text NOT NULL,
21 `mail` text NOT NULL,
22 `mail_2` text NOT NULL,
23 `messages` text NOT NULL,
24 `additional_settings` text NOT NULL,
25 PRIMARY KEY (`cf7_unit_id`)
26) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ;
27
28#