· 5 years ago · Feb 17, 2020, 08:42 AM
1# WordPress MySQL database backup
2# Created by UpdraftPlus version 2.16.21.24 (https://updraftplus.com)
3# WordPress Version: 5.3.2, running on PHP 7.4.2 (Apache/2.4.38 (Debian)), MySQL 8.0.19
4# Backup of: https://www.cododigital.co.uk
5# Home URL: https://www.cododigital.co.uk
6# Content URL: https://www.cododigital.co.uk/wp-content
7# Uploads URL: https://resources.cododigital.co.uk/wp-content/uploads
8# Table prefix: wp_
9# Filtered table prefix:
10# Site info: multisite=0
11# Site info: end
12
13# Generated: Friday 14. February 2020 00:21 UTC
14# Hostname: db-prod.cododigital.co.uk
15# Database: `wordpress-codo-digital`
16# --------------------------------------------------------
17/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
18/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
19/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
20/*!40101 SET NAMES utf8mb4 */;
21/*!40101 SET foreign_key_checks = 0 */;
22
23# Table: `wp_options`
24# Approximate rows expected in table: 384
25
26# Delete any existing table `wp_options`
27
28DROP TABLE IF EXISTS `wp_options`;
29
30# Table structure of table `wp_options`
31
32
33
34
35
36CREATE TABLE `wp_options` (
37 `option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
38 `option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
39 `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
40 `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
41 PRIMARY KEY (`option_id`),
42 UNIQUE KEY `option_name` (`option_name`),
43 KEY `autoload` (`autoload`)
44) ENGINE=InnoDB AUTO_INCREMENT=49746 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
45
46# Data contents of table `wp_options`
47
48
49# End of data contents of table `wp_options`
50
51# Table: `wp_users`
52# Approximate rows expected in table: 2
53
54# Delete any existing table `wp_users`
55
56DROP TABLE IF EXISTS `wp_users`;
57
58# Table structure of table `wp_users`
59
60CREATE TABLE `wp_users` (
61 `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
62 `user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
63 `user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
64 `user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
65 `user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
66 `user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
67 `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
68 `user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
69 `user_status` int NOT NULL DEFAULT '0',
70 `display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
71 PRIMARY KEY (`ID`),
72 KEY `user_login_key` (`user_login`),
73 KEY `user_nicename` (`user_nicename`),
74 KEY `user_email` (`user_email`)
75) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
76
77# Data contents of table `wp_users`
78
79
80# End of data contents of table `wp_users`
81
82# Table: `wp_usermeta`
83# Approximate rows expected in table: 55
84
85# Delete any existing table `wp_usermeta`
86
87DROP TABLE IF EXISTS `wp_usermeta`;
88
89# Table structure of table `wp_usermeta`
90
91CREATE TABLE `wp_usermeta` (
92 `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
93 `user_id` bigint unsigned NOT NULL DEFAULT '0',
94 `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
95 `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
96 PRIMARY KEY (`umeta_id`),
97 KEY `user_id` (`user_id`),
98 KEY `meta_key` (`meta_key`(191))
99) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
100
101# Data contents of table `wp_usermeta`
102
103
104# End of data contents of table `wp_usermeta`
105
106# Table: `wp_commentmeta`
107# Approximate rows expected in table: 0
108
109# Delete any existing table `wp_commentmeta`
110
111DROP TABLE IF EXISTS `wp_commentmeta`;
112
113# Table structure of table `wp_commentmeta`
114
115CREATE TABLE `wp_commentmeta` (
116 `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
117 `comment_id` bigint unsigned NOT NULL DEFAULT '0',
118 `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
119 `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
120 PRIMARY KEY (`meta_id`),
121 KEY `comment_id` (`comment_id`),
122 KEY `meta_key` (`meta_key`(191))
123) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
124
125# Data contents of table `wp_commentmeta`
126
127
128# End of data contents of table `wp_commentmeta`
129
130# Table: `wp_comments`
131# Approximate rows expected in table: 0
132
133# Delete any existing table `wp_comments`
134
135DROP TABLE IF EXISTS `wp_comments`;
136
137# Table structure of table `wp_comments`
138
139CREATE TABLE `wp_comments` (
140 `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
141 `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
142 `comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
143 `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
144 `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
145 `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
146 `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
147 `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
148 `comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
149 `comment_karma` int NOT NULL DEFAULT '0',
150 `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
151 `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
152 `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
153 `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
154 `user_id` bigint unsigned NOT NULL DEFAULT '0',
155 PRIMARY KEY (`comment_ID`),
156 KEY `comment_post_ID` (`comment_post_ID`),
157 KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
158 KEY `comment_date_gmt` (`comment_date_gmt`),
159 KEY `comment_parent` (`comment_parent`),
160 KEY `comment_author_email` (`comment_author_email`(10))
161) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
162
163# Data contents of table `wp_comments`
164
165
166# End of data contents of table `wp_comments`
167
168# Table: `wp_links`
169# Approximate rows expected in table: 0
170
171# Delete any existing table `wp_links`
172
173DROP TABLE IF EXISTS `wp_links`;
174
175# Table structure of table `wp_links`
176
177CREATE TABLE `wp_links` (
178 `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
179 `link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
180 `link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
181 `link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
182 `link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
183 `link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
184 `link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
185 `link_owner` bigint unsigned NOT NULL DEFAULT '1',
186 `link_rating` int NOT NULL DEFAULT '0',
187 `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
188 `link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
189 `link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
190 `link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
191 PRIMARY KEY (`link_id`),
192 KEY `link_visible` (`link_visible`)
193) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
194
195# Data contents of table `wp_links`
196
197
198# End of data contents of table `wp_links`
199
200# Table: `wp_postmeta`
201# Approximate rows expected in table: 237
202
203# Delete any existing table `wp_postmeta`
204
205DROP TABLE IF EXISTS `wp_postmeta`;
206
207# Table structure of table `wp_postmeta`
208
209CREATE TABLE `wp_postmeta` (
210 `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
211 `post_id` bigint unsigned NOT NULL DEFAULT '0',
212 `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
213 `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
214 PRIMARY KEY (`meta_id`),
215 KEY `post_id` (`post_id`),
216 KEY `meta_key` (`meta_key`(191))
217) ENGINE=InnoDB AUTO_INCREMENT=507 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
218
219# Data contents of table `wp_postmeta`
220
221
222# End of data contents of table `wp_postmeta`
223
224# Table: `wp_posts`
225# Approximate rows expected in table: 151
226
227# Delete any existing table `wp_posts`
228
229DROP TABLE IF EXISTS `wp_posts`;
230
231# Table structure of table `wp_posts`
232
233CREATE TABLE `wp_posts` (
234 `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
235 `post_author` bigint unsigned NOT NULL DEFAULT '0',
236 `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
237 `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
238 `post_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
239 `post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
240 `post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
241 `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
242 `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
243 `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
244 `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
245 `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
246 `to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
247 `pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
248 `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
249 `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
250 `post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
251 `post_parent` bigint unsigned NOT NULL DEFAULT '0',
252 `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
253 `menu_order` int NOT NULL DEFAULT '0',
254 `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
255 `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
256 `comment_count` bigint NOT NULL DEFAULT '0',
257 PRIMARY KEY (`ID`),
258 KEY `post_name` (`post_name`(191)),
259 KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
260 KEY `post_parent` (`post_parent`),
261 KEY `post_author` (`post_author`)
262) ENGINE=InnoDB AUTO_INCREMENT=411 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
263
264# Data contents of table `wp_posts`
265
266
267# End of data contents of table `wp_posts`
268
269# Table: `wp_term_relationships`
270# Approximate rows expected in table: 103
271
272# Delete any existing table `wp_term_relationships`
273
274DROP TABLE IF EXISTS `wp_term_relationships`;
275
276# Table structure of table `wp_term_relationships`
277
278CREATE TABLE `wp_term_relationships` (
279 `object_id` bigint unsigned NOT NULL DEFAULT '0',
280 `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
281 `term_order` int NOT NULL DEFAULT '0',
282 PRIMARY KEY (`object_id`,`term_taxonomy_id`),
283 KEY `term_taxonomy_id` (`term_taxonomy_id`)
284) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
285
286# Data contents of table `wp_term_relationships`
287
288
289# End of data contents of table `wp_term_relationships`
290
291# Table: `wp_term_taxonomy`
292# Approximate rows expected in table: 110
293
294# Delete any existing table `wp_term_taxonomy`
295
296DROP TABLE IF EXISTS `wp_term_taxonomy`;
297
298# Table structure of table `wp_term_taxonomy`
299
300CREATE TABLE `wp_term_taxonomy` (
301 `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
302 `term_id` bigint unsigned NOT NULL DEFAULT '0',
303 `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
304 `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
305 `parent` bigint unsigned NOT NULL DEFAULT '0',
306 `count` bigint NOT NULL DEFAULT '0',
307 PRIMARY KEY (`term_taxonomy_id`),
308 UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
309 KEY `taxonomy` (`taxonomy`)
310) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
311
312# Data contents of table `wp_term_taxonomy`
313
314
315# End of data contents of table `wp_term_taxonomy`
316
317# Table: `wp_termmeta`
318# Approximate rows expected in table: 0
319
320# Delete any existing table `wp_termmeta`
321
322DROP TABLE IF EXISTS `wp_termmeta`;
323
324# Table structure of table `wp_termmeta`
325
326CREATE TABLE `wp_termmeta` (
327 `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
328 `term_id` bigint unsigned NOT NULL DEFAULT '0',
329 `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
330 `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
331 PRIMARY KEY (`meta_id`),
332 KEY `term_id` (`term_id`),
333 KEY `meta_key` (`meta_key`(191))
334) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
335
336# Data contents of table `wp_termmeta`
337
338
339# End of data contents of table `wp_termmeta`
340
341# Table: `wp_terms`
342# Approximate rows expected in table: 110
343
344# Delete any existing table `wp_terms`
345
346DROP TABLE IF EXISTS `wp_terms`;
347
348# Table structure of table `wp_terms`
349
350CREATE TABLE `wp_terms` (
351 `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
352 `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
353 `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
354 `term_group` bigint NOT NULL DEFAULT '0',
355 PRIMARY KEY (`term_id`),
356 KEY `slug` (`slug`(191)),
357 KEY `name` (`name`(191))
358) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
359
360# Data contents of table `wp_terms`
361
362
363# End of data contents of table `wp_terms`
364
365# Table: `wp_yoast_seo_links`
366# Approximate rows expected in table: 4
367
368# Delete any existing table `wp_yoast_seo_links`
369
370DROP TABLE IF EXISTS `wp_yoast_seo_links`;
371
372# Table structure of table `wp_yoast_seo_links`
373
374CREATE TABLE `wp_yoast_seo_links` (
375 `id` bigint unsigned NOT NULL AUTO_INCREMENT,
376 `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
377 `post_id` bigint unsigned NOT NULL,
378 `target_post_id` bigint unsigned NOT NULL,
379 `type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
380 PRIMARY KEY (`id`),
381 KEY `link_direction` (`post_id`,`type`)
382) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
383
384# Data contents of table `wp_yoast_seo_links`
385
386
387# End of data contents of table `wp_yoast_seo_links`
388
389# Table: `wp_yoast_seo_meta`
390# Approximate rows expected in table: 73
391
392# Delete any existing table `wp_yoast_seo_meta`
393
394DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
395
396# Table structure of table `wp_yoast_seo_meta`
397
398CREATE TABLE `wp_yoast_seo_meta` (
399 `object_id` bigint unsigned NOT NULL,
400 `internal_link_count` int unsigned DEFAULT NULL,
401 `incoming_link_count` int unsigned DEFAULT NULL,
402 UNIQUE KEY `object_id` (`object_id`)
403) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
404
405# Data contents of table `wp_yoast_seo_meta`
406
407
408# End of data contents of table `wp_yoast_seo_meta`
409
410# Table: `wp_ewwwio_images`
411# Approximate rows expected in table: 545
412
413# Delete any existing table `wp_ewwwio_images`
414
415DROP TABLE IF EXISTS `wp_ewwwio_images`;
416
417# Table structure of table `wp_ewwwio_images`
418
419CREATE TABLE `wp_ewwwio_images` (
420 `id` int unsigned NOT NULL AUTO_INCREMENT,
421 `attachment_id` bigint unsigned DEFAULT NULL,
422 `gallery` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
423 `resize` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
424 `path` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
425 `converted` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
426 `results` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
427 `image_size` int unsigned DEFAULT NULL,
428 `orig_size` int unsigned DEFAULT NULL,
429 `backup` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
430 `level` int unsigned DEFAULT NULL,
431 `pending` tinyint(1) NOT NULL DEFAULT '0',
432 `updates` int unsigned DEFAULT NULL,
433 `updated` timestamp NULL DEFAULT '1971-01-01 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
434 `trace` blob,
435 UNIQUE KEY `id` (`id`),
436 KEY `path` (`path`(191)),
437 KEY `attachment_info` (`gallery`(3),`attachment_id`)
438) ENGINE=InnoDB AUTO_INCREMENT=546 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
439
440# Data contents of table `wp_ewwwio_images`
441
442
443# End of data contents of table `wp_ewwwio_images`
444
445# Table: `wp_ewwwio_queue`
446# Approximate rows expected in table: 0
447
448# Delete any existing table `wp_ewwwio_queue`
449
450DROP TABLE IF EXISTS `wp_ewwwio_queue`;
451
452# Table structure of table `wp_ewwwio_queue`
453
454CREATE TABLE `wp_ewwwio_queue` (
455 `attachment_id` bigint unsigned DEFAULT NULL,
456 `gallery` varchar(10) DEFAULT NULL,
457 `scanned` tinyint(1) NOT NULL DEFAULT '0',
458 KEY `attachment_info` (`gallery`(3),`attachment_id`)
459) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
460
461# Data contents of table `wp_ewwwio_queue`
462
463
464# End of data contents of table `wp_ewwwio_queue`
465
466# Table: `wp_gf_addon_feed`
467# Approximate rows expected in table: 0
468
469# Delete any existing table `wp_gf_addon_feed`
470
471DROP TABLE IF EXISTS `wp_gf_addon_feed`;
472
473# Table structure of table `wp_gf_addon_feed`
474
475CREATE TABLE `wp_gf_addon_feed` (
476 `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
477 `form_id` mediumint unsigned NOT NULL,
478 `is_active` tinyint(1) NOT NULL DEFAULT '1',
479 `feed_order` mediumint unsigned NOT NULL DEFAULT '0',
480 `meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
481 `addon_slug` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
482 `event_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
483 PRIMARY KEY (`id`),
484 KEY `addon_form` (`addon_slug`,`form_id`)
485) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
486
487# Data contents of table `wp_gf_addon_feed`
488
489
490# End of data contents of table `wp_gf_addon_feed`
491
492# Table: `wp_gf_draft_submissions`
493# Approximate rows expected in table: 0
494
495# Delete any existing table `wp_gf_draft_submissions`
496
497DROP TABLE IF EXISTS `wp_gf_draft_submissions`;
498
499# Table structure of table `wp_gf_draft_submissions`
500
501CREATE TABLE `wp_gf_draft_submissions` (
502 `uuid` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
503 `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
504 `form_id` mediumint unsigned NOT NULL,
505 `date_created` datetime NOT NULL,
506 `ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
507 `source_url` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
508 `submission` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
509 PRIMARY KEY (`uuid`),
510 KEY `form_id` (`form_id`)
511) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
512
513# Data contents of table `wp_gf_draft_submissions`
514
515
516# End of data contents of table `wp_gf_draft_submissions`
517
518# Table: `wp_gf_entry`
519# Approximate rows expected in table: 6
520
521# Delete any existing table `wp_gf_entry`
522
523DROP TABLE IF EXISTS `wp_gf_entry`;
524
525# Table structure of table `wp_gf_entry`
526
527CREATE TABLE `wp_gf_entry` (
528 `id` int unsigned NOT NULL AUTO_INCREMENT,
529 `form_id` mediumint unsigned NOT NULL,
530 `post_id` bigint unsigned DEFAULT NULL,
531 `date_created` datetime NOT NULL,
532 `date_updated` datetime DEFAULT NULL,
533 `is_starred` tinyint(1) NOT NULL DEFAULT '0',
534 `is_read` tinyint(1) NOT NULL DEFAULT '0',
535 `ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
536 `source_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
537 `user_agent` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
538 `currency` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
539 `payment_status` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
540 `payment_date` datetime DEFAULT NULL,
541 `payment_amount` decimal(19,2) DEFAULT NULL,
542 `payment_method` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
543 `transaction_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
544 `is_fulfilled` tinyint(1) DEFAULT NULL,
545 `created_by` bigint unsigned DEFAULT NULL,
546 `transaction_type` tinyint(1) DEFAULT NULL,
547 `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'active',
548 PRIMARY KEY (`id`),
549 KEY `form_id` (`form_id`),
550 KEY `form_id_status` (`form_id`,`status`)
551) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
552
553# Data contents of table `wp_gf_entry`
554
555
556# End of data contents of table `wp_gf_entry`
557
558# Table: `wp_gf_entry_meta`
559# Approximate rows expected in table: 38
560
561# Delete any existing table `wp_gf_entry_meta`
562
563DROP TABLE IF EXISTS `wp_gf_entry_meta`;
564
565# Table structure of table `wp_gf_entry_meta`
566
567CREATE TABLE `wp_gf_entry_meta` (
568 `id` bigint unsigned NOT NULL AUTO_INCREMENT,
569 `form_id` mediumint unsigned NOT NULL DEFAULT '0',
570 `entry_id` bigint unsigned NOT NULL,
571 `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
572 `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
573 `item_index` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
574 PRIMARY KEY (`id`),
575 KEY `meta_key` (`meta_key`(191)),
576 KEY `entry_id` (`entry_id`),
577 KEY `meta_value` (`meta_value`(191))
578) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
579
580# Data contents of table `wp_gf_entry_meta`
581
582
583# End of data contents of table `wp_gf_entry_meta`
584
585# Table: `wp_gf_entry_notes`
586# Approximate rows expected in table: 2
587
588# Delete any existing table `wp_gf_entry_notes`
589
590DROP TABLE IF EXISTS `wp_gf_entry_notes`;
591
592# Table structure of table `wp_gf_entry_notes`
593
594CREATE TABLE `wp_gf_entry_notes` (
595 `id` int unsigned NOT NULL AUTO_INCREMENT,
596 `entry_id` int unsigned NOT NULL,
597 `user_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
598 `user_id` bigint DEFAULT NULL,
599 `date_created` datetime NOT NULL,
600 `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
601 `note_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
602 `sub_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
603 PRIMARY KEY (`id`),
604 KEY `entry_id` (`entry_id`),
605 KEY `entry_user_key` (`entry_id`,`user_id`)
606) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
607
608# Data contents of table `wp_gf_entry_notes`
609
610
611# End of data contents of table `wp_gf_entry_notes`
612
613# Table: `wp_gf_form`
614# Approximate rows expected in table: 0
615
616# Delete any existing table `wp_gf_form`
617
618DROP TABLE IF EXISTS `wp_gf_form`;
619
620# Table structure of table `wp_gf_form`
621
622CREATE TABLE `wp_gf_form` (
623 `id` mediumint unsigned NOT NULL AUTO_INCREMENT,
624 `title` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
625 `date_created` datetime NOT NULL,
626 `date_updated` datetime DEFAULT NULL,
627 `is_active` tinyint(1) NOT NULL DEFAULT '1',
628 `is_trash` tinyint(1) NOT NULL DEFAULT '0',
629 PRIMARY KEY (`id`)
630) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
631
632# Data contents of table `wp_gf_form`
633
634
635# End of data contents of table `wp_gf_form`
636
637# Table: `wp_gf_form_meta`
638# Approximate rows expected in table: 0
639
640# Delete any existing table `wp_gf_form_meta`
641
642DROP TABLE IF EXISTS `wp_gf_form_meta`;
643
644# Table structure of table `wp_gf_form_meta`
645
646CREATE TABLE `wp_gf_form_meta` (
647 `form_id` mediumint unsigned NOT NULL,
648 `display_meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
649 `entries_grid_meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
650 `confirmations` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
651 `notifications` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
652 PRIMARY KEY (`form_id`)
653) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
654
655# Data contents of table `wp_gf_form_meta`
656
657
658# End of data contents of table `wp_gf_form_meta`
659
660# Table: `wp_gf_form_revisions`
661# Approximate rows expected in table: 0
662
663# Delete any existing table `wp_gf_form_revisions`
664
665DROP TABLE IF EXISTS `wp_gf_form_revisions`;
666
667# Table structure of table `wp_gf_form_revisions`
668
669CREATE TABLE `wp_gf_form_revisions` (
670 `id` bigint unsigned NOT NULL AUTO_INCREMENT,
671 `form_id` mediumint unsigned NOT NULL,
672 `display_meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
673 `date_created` datetime NOT NULL,
674 PRIMARY KEY (`id`),
675 KEY `date_created` (`date_created`),
676 KEY `form_id` (`form_id`)
677) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
678
679# Data contents of table `wp_gf_form_revisions`
680
681
682# End of data contents of table `wp_gf_form_revisions`
683
684# Table: `wp_gf_form_view`
685# Approximate rows expected in table: 110
686
687# Delete any existing table `wp_gf_form_view`
688
689DROP TABLE IF EXISTS `wp_gf_form_view`;
690
691# Table structure of table `wp_gf_form_view`
692
693CREATE TABLE `wp_gf_form_view` (
694 `id` bigint unsigned NOT NULL AUTO_INCREMENT,
695 `form_id` mediumint unsigned NOT NULL,
696 `date_created` datetime NOT NULL,
697 `ip` char(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
698 `count` mediumint unsigned NOT NULL DEFAULT '1',
699 PRIMARY KEY (`id`),
700 KEY `date_created` (`date_created`),
701 KEY `form_id` (`form_id`)
702) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
703
704# Data contents of table `wp_gf_form_view`
705
706
707# End of data contents of table `wp_gf_form_view`
708
709# Table: `wp_oses_clicks`
710# Approximate rows expected in table: 0
711
712# Delete any existing table `wp_oses_clicks`
713
714DROP TABLE IF EXISTS `wp_oses_clicks`;
715
716# Table structure of table `wp_oses_clicks`
717
718CREATE TABLE `wp_oses_clicks` (
719 `email_click_id` bigint NOT NULL AUTO_INCREMENT,
720 `email_id` bigint NOT NULL,
721 `email_click_url` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
722 `email_click_count` int DEFAULT '0',
723 `email_first_click_date` datetime DEFAULT NULL,
724 `email_last_click_date` datetime DEFAULT NULL,
725 PRIMARY KEY (`email_click_id`),
726 KEY `email_id` (`email_id`)
727) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
728
729# Data contents of table `wp_oses_clicks`
730
731
732# End of data contents of table `wp_oses_clicks`
733
734# Table: `wp_oses_emails`
735# Approximate rows expected in table: 37
736
737# Delete any existing table `wp_oses_emails`
738
739DROP TABLE IF EXISTS `wp_oses_emails`;
740
741# Table structure of table `wp_oses_emails`
742
743CREATE TABLE `wp_oses_emails` (
744 `email_id` bigint NOT NULL AUTO_INCREMENT,
745 `subsite_id` bigint DEFAULT NULL,
746 `email_to` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
747 `email_subject` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
748 `email_message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
749 `email_headers` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
750 `email_attachments` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
751 `email_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
752 `email_open_count` int DEFAULT '0',
753 `email_first_open_date` datetime DEFAULT NULL,
754 `email_last_open_date` datetime DEFAULT NULL,
755 `email_created` datetime NOT NULL,
756 `email_sent` datetime DEFAULT NULL,
757 `email_parent` bigint DEFAULT NULL,
758 `auto_retries` int DEFAULT '0',
759 `manual_retries` int DEFAULT '0',
760 PRIMARY KEY (`email_id`),
761 KEY `email_subject` (`email_subject`)
762) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
763
764# Data contents of table `wp_oses_emails`
765
766
767# End of data contents of table `wp_oses_emails`
768
769# Table: `wp_w3tc_cdn_pathmap`
770# Approximate rows expected in table: 0
771
772# Delete any existing table `wp_w3tc_cdn_pathmap`
773
774DROP TABLE IF EXISTS `wp_w3tc_cdn_pathmap`;
775
776# Table structure of table `wp_w3tc_cdn_pathmap`
777
778CREATE TABLE `wp_w3tc_cdn_pathmap` (
779 `path` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
780 `path_hash` varchar(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
781 `type` tinyint(1) NOT NULL DEFAULT '0',
782 `remote_id` varchar(200) CHARACTER SET ascii COLLATE ascii_general_ci DEFAULT NULL,
783 PRIMARY KEY (`path_hash`),
784 KEY `remote_id` (`remote_id`)
785) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
786
787# Data contents of table `wp_w3tc_cdn_pathmap`
788
789
790# End of data contents of table `wp_w3tc_cdn_pathmap`
791
792# Table: `wp_w3tc_cdn_queue`
793# Approximate rows expected in table: 0
794
795# Delete any existing table `wp_w3tc_cdn_queue`
796
797DROP TABLE IF EXISTS `wp_w3tc_cdn_queue`;
798
799# Table structure of table `wp_w3tc_cdn_queue`
800
801CREATE TABLE `wp_w3tc_cdn_queue` (
802 `id` int unsigned NOT NULL AUTO_INCREMENT,
803 `local_path` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
804 `remote_path` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
805 `command` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '1 - Upload, 2 - Delete, 3 - Purge',
806 `last_error` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
807 `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
808 PRIMARY KEY (`id`),
809 KEY `date` (`date`)
810) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci ;
811
812# Data contents of table `wp_w3tc_cdn_queue`
813
814
815# End of data contents of table `wp_w3tc_cdn_queue`
816
817/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
818/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
819/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;