-
Notifications
You must be signed in to change notification settings - Fork 0
/
drupal7_2015-02-01.sql
4390 lines (3921 loc) · 809 KB
/
drupal7_2015-02-01.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# ************************************************************
# Sequel Pro SQL dump
# Version 4096
#
# http://www.sequelpro.com/
# http://code.google.com/p/sequel-pro/
#
# Host: 127.0.0.1 (MySQL 5.5.34)
# Database: drupal7
# Generation Time: 2015-02-01 09:01:15 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table actions
# ------------------------------------------------------------
DROP TABLE IF EXISTS `actions`;
CREATE TABLE `actions` (
`aid` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique actions ID.',
`type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The object that that action acts on (node, user, comment, system or custom types.)',
`callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The callback function that executes when the action runs.',
`parameters` longblob NOT NULL COMMENT 'Parameters to be passed to the callback function.',
`label` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Label of the action.',
PRIMARY KEY (`aid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores action information.';
LOCK TABLES `actions` WRITE;
/*!40000 ALTER TABLE `actions` DISABLE KEYS */;
INSERT INTO `actions` (`aid`, `type`, `callback`, `parameters`, `label`)
VALUES
('comment_publish_action','comment','comment_publish_action','','Publish comment'),
('comment_save_action','comment','comment_save_action','','Save comment'),
('comment_unpublish_action','comment','comment_unpublish_action','','Unpublish comment'),
('node_make_sticky_action','node','node_make_sticky_action','','Make content sticky'),
('node_make_unsticky_action','node','node_make_unsticky_action','','Make content unsticky'),
('node_promote_action','node','node_promote_action','','Promote content to front page'),
('node_publish_action','node','node_publish_action','','Publish content'),
('node_save_action','node','node_save_action','','Save content'),
('node_unpromote_action','node','node_unpromote_action','','Remove content from front page'),
('node_unpublish_action','node','node_unpublish_action','','Unpublish content'),
('system_block_ip_action','user','system_block_ip_action','','Ban IP address of current user'),
('user_block_user_action','user','user_block_user_action','','Block current user');
/*!40000 ALTER TABLE `actions` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table authmap
# ------------------------------------------------------------
DROP TABLE IF EXISTS `authmap`;
CREATE TABLE `authmap` (
`aid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique authmap ID.',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT 'User’s users.uid.',
`authname` varchar(128) NOT NULL DEFAULT '' COMMENT 'Unique authentication name.',
`module` varchar(128) NOT NULL DEFAULT '' COMMENT 'Module which is controlling the authentication.',
PRIMARY KEY (`aid`),
UNIQUE KEY `authname` (`authname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores distributed authentication mapping.';
# Dump of table batch
# ------------------------------------------------------------
DROP TABLE IF EXISTS `batch`;
CREATE TABLE `batch` (
`bid` int(10) unsigned NOT NULL COMMENT 'Primary Key: Unique batch ID.',
`token` varchar(64) NOT NULL COMMENT 'A string token generated against the current user’s session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it.',
`timestamp` int(11) NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.',
`batch` longblob COMMENT 'A serialized array containing the processing data for the batch.',
PRIMARY KEY (`bid`),
KEY `token` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores details about batches (processes that run in...';
# Dump of table block
# ------------------------------------------------------------
DROP TABLE IF EXISTS `block`;
CREATE TABLE `block` (
`bid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique block ID.',
`module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The module from which the block originates; for example, ’user’ for the Who’s Online block, and ’block’ for any custom blocks.',
`delta` varchar(32) NOT NULL DEFAULT '0' COMMENT 'Unique ID for block within a module.',
`theme` varchar(64) NOT NULL DEFAULT '' COMMENT 'The theme under which the block settings apply.',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Block enabled status. (1 = enabled, 0 = disabled)',
`weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Block weight within region.',
`region` varchar(64) NOT NULL DEFAULT '' COMMENT 'Theme region within which the block is set.',
`custom` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Flag to indicate how users may control visibility of the block. (0 = Users cannot control, 1 = On by default, but can be hidden, 2 = Hidden by default, but can be shown)',
`visibility` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Flag to indicate how to show blocks on pages. (0 = Show on all pages except listed pages, 1 = Show only on listed pages, 2 = Use custom PHP code to determine visibility)',
`pages` text NOT NULL COMMENT 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.',
`title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)',
`cache` tinyint(4) NOT NULL DEFAULT '1' COMMENT 'Binary flag to indicate block cache mode. (-2: Custom cache, -1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See DRUPAL_CACHE_* constants in ../includes/common.inc for more detailed information.',
PRIMARY KEY (`bid`),
UNIQUE KEY `tmd` (`theme`,`module`,`delta`),
KEY `list` (`theme`,`status`,`region`,`weight`,`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores block settings, such as region and visibility...';
LOCK TABLES `block` WRITE;
/*!40000 ALTER TABLE `block` DISABLE KEYS */;
INSERT INTO `block` (`bid`, `module`, `delta`, `theme`, `status`, `weight`, `region`, `custom`, `visibility`, `pages`, `title`, `cache`)
VALUES
(1,'system','main','bartik',1,0,'content',0,0,'','',-1),
(2,'search','form','bartik',1,-1,'sidebar_first',0,0,'','',-1),
(3,'node','recent','seven',1,10,'dashboard_main',0,0,'','',-1),
(4,'user','login','bartik',1,0,'sidebar_first',0,0,'','',-1),
(5,'system','navigation','bartik',1,0,'sidebar_first',0,0,'','',-1),
(6,'system','powered-by','bartik',1,10,'footer',0,0,'','',-1),
(7,'system','help','bartik',1,0,'help',0,0,'','',-1),
(8,'system','main','seven',1,0,'content',0,0,'','',-1),
(9,'system','help','seven',1,0,'help',0,0,'','',-1),
(10,'user','login','seven',1,10,'content',0,0,'','',-1),
(11,'user','new','seven',1,0,'dashboard_sidebar',0,0,'','',-1),
(12,'search','form','seven',1,-10,'dashboard_sidebar',0,0,'','',-1),
(13,'comment','recent','bartik',0,0,'-1',0,0,'','',1),
(14,'node','syndicate','bartik',0,0,'-1',0,0,'','',-1),
(15,'node','recent','bartik',0,0,'-1',0,0,'','',1),
(16,'shortcut','shortcuts','bartik',0,0,'-1',0,0,'','',-1),
(17,'system','management','bartik',0,0,'-1',0,0,'','',-1),
(18,'system','user-menu','bartik',0,0,'-1',0,0,'','',-1),
(19,'system','main-menu','bartik',0,0,'-1',0,0,'','',-1),
(20,'user','new','bartik',0,0,'-1',0,0,'','',1),
(21,'user','online','bartik',0,0,'-1',0,0,'','',-1),
(22,'comment','recent','seven',1,0,'dashboard_inactive',0,0,'','',1),
(23,'node','syndicate','seven',0,0,'-1',0,0,'','',-1),
(24,'shortcut','shortcuts','seven',0,0,'-1',0,0,'','',-1),
(25,'system','powered-by','seven',0,10,'-1',0,0,'','',-1),
(26,'system','navigation','seven',0,0,'-1',0,0,'','',-1),
(27,'system','management','seven',0,0,'-1',0,0,'','',-1),
(28,'system','user-menu','seven',0,0,'-1',0,0,'','',-1),
(29,'system','main-menu','seven',0,0,'-1',0,0,'','',-1),
(30,'user','online','seven',1,0,'dashboard_inactive',0,0,'','',-1),
(31,'menu','devel','bartik',0,0,'-1',0,0,'','',-1),
(32,'devel','execute_php','bartik',0,0,'-1',0,0,'','',-1),
(33,'devel','switch_user','bartik',0,0,'-1',0,0,'','',-1),
(34,'menu','devel','seven',0,0,'-1',0,0,'','',-1),
(35,'devel','execute_php','seven',0,0,'-1',0,0,'','',-1),
(36,'devel','switch_user','seven',0,0,'-1',0,0,'','',-1);
/*!40000 ALTER TABLE `block` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table block_custom
# ------------------------------------------------------------
DROP TABLE IF EXISTS `block_custom`;
CREATE TABLE `block_custom` (
`bid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The block’s block.bid.',
`body` longtext COMMENT 'Block contents.',
`info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.',
`format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the block body.',
PRIMARY KEY (`bid`),
UNIQUE KEY `info` (`info`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.';
# Dump of table block_node_type
# ------------------------------------------------------------
DROP TABLE IF EXISTS `block_node_type`;
CREATE TABLE `block_node_type` (
`module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
`delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
`type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type from node_type.type.',
PRIMARY KEY (`module`,`delta`,`type`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sets up display criteria for blocks based on content types';
# Dump of table block_role
# ------------------------------------------------------------
DROP TABLE IF EXISTS `block_role`;
CREATE TABLE `block_role` (
`module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
`delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
`rid` int(10) unsigned NOT NULL COMMENT 'The user’s role ID from users_roles.rid.',
PRIMARY KEY (`module`,`delta`,`rid`),
KEY `rid` (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sets up access permissions for blocks based on user roles';
# Dump of table blocked_ips
# ------------------------------------------------------------
DROP TABLE IF EXISTS `blocked_ips`;
CREATE TABLE `blocked_ips` (
`iid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: unique ID for IP addresses.',
`ip` varchar(40) NOT NULL DEFAULT '' COMMENT 'IP address',
PRIMARY KEY (`iid`),
KEY `blocked_ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores blocked IP addresses.';
# Dump of table cache
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache`;
CREATE TABLE `cache` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
# Dump of table cache_admin_menu
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_admin_menu`;
CREATE TABLE `cache_admin_menu` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for Administration menu to store client-side...';
# Dump of table cache_block
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_block`;
CREATE TABLE `cache_block` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Block module to store already built...';
# Dump of table cache_bootstrap
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_bootstrap`;
CREATE TABLE `cache_bootstrap` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for data required to bootstrap Drupal, may be...';
# Dump of table cache_field
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_field`;
CREATE TABLE `cache_field` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Field module to store already built...';
# Dump of table cache_filter
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_filter`;
CREATE TABLE `cache_filter` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Filter module to store already...';
# Dump of table cache_form
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_form`;
CREATE TABLE `cache_form` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the form system to store recently built...';
# Dump of table cache_image
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_image`;
CREATE TABLE `cache_image` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store information about image...';
# Dump of table cache_menu
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_menu`;
CREATE TABLE `cache_menu` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the menu system to store router...';
# Dump of table cache_page
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_page`;
CREATE TABLE `cache_page` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store compressed pages for anonymous...';
# Dump of table cache_path
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_path`;
CREATE TABLE `cache_path` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for path alias lookup.';
# Dump of table cache_token
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_token`;
CREATE TABLE `cache_token` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for token information.';
# Dump of table cache_update
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_update`;
CREATE TABLE `cache_update` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Update module to store information...';
# Dump of table cache_views
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_views`;
CREATE TABLE `cache_views` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
# Dump of table cache_views_data
# ------------------------------------------------------------
DROP TABLE IF EXISTS `cache_views_data`;
CREATE TABLE `cache_views_data` (
`cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
`data` longblob COMMENT 'A collection of data to cache.',
`expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
`serialized` smallint(6) NOT NULL DEFAULT '1' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for views to store pre-rendered queries,...';
# Dump of table comment
# ------------------------------------------------------------
DROP TABLE IF EXISTS `comment`;
CREATE TABLE `comment` (
`cid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique comment ID.',
`pid` int(11) NOT NULL DEFAULT '0' COMMENT 'The comment.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.',
`nid` int(11) NOT NULL DEFAULT '0' COMMENT 'The node.nid to which this comment is a reply.',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid who authored the comment. If set to 0, this comment was created by an anonymous user.',
`subject` varchar(64) NOT NULL DEFAULT '' COMMENT 'The comment title.',
`hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'The author’s host name.',
`created` int(11) NOT NULL DEFAULT '0' COMMENT 'The time that the comment was created, as a Unix timestamp.',
`changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The time that the comment was last edited, as a Unix timestamp.',
`status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'The published status of a comment. (0 = Not Published, 1 = Published)',
`thread` varchar(255) NOT NULL COMMENT 'The vancode representation of the comment’s place in a thread.',
`name` varchar(60) DEFAULT NULL COMMENT 'The comment author’s name. Uses users.name if the user is logged in, otherwise uses the value typed into the comment form.',
`mail` varchar(64) DEFAULT NULL COMMENT 'The comment author’s e-mail address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
`homepage` varchar(255) DEFAULT NULL COMMENT 'The comment author’s home page address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
`language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The languages.language of this comment.',
PRIMARY KEY (`cid`),
KEY `comment_status_pid` (`pid`,`status`),
KEY `comment_num_new` (`nid`,`status`,`created`,`cid`,`thread`),
KEY `comment_uid` (`uid`),
KEY `comment_nid_language` (`nid`,`language`),
KEY `comment_created` (`created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.';
# Dump of table ctools_css_cache
# ------------------------------------------------------------
DROP TABLE IF EXISTS `ctools_css_cache`;
CREATE TABLE `ctools_css_cache` (
`cid` varchar(128) NOT NULL COMMENT 'The CSS ID this cache object belongs to.',
`filename` varchar(255) DEFAULT NULL COMMENT 'The filename this CSS is stored in.',
`css` longtext COMMENT 'CSS being stored.',
`filter` tinyint(4) DEFAULT NULL COMMENT 'Whether or not this CSS needs to be filtered.',
PRIMARY KEY (`cid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A special cache used to store CSS that must be non-volatile.';
# Dump of table ctools_object_cache
# ------------------------------------------------------------
DROP TABLE IF EXISTS `ctools_object_cache`;
CREATE TABLE `ctools_object_cache` (
`sid` varchar(64) NOT NULL COMMENT 'The session ID this cache object belongs to.',
`name` varchar(128) NOT NULL COMMENT 'The name of the object this cache is attached to.',
`obj` varchar(128) NOT NULL COMMENT 'The type of the object this cache is attached to; this essentially represents the owner so that several sub-systems can use this cache.',
`updated` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The time this cache was created or updated.',
`data` longblob COMMENT 'Serialized data being stored.',
PRIMARY KEY (`sid`,`obj`,`name`),
KEY `updated` (`updated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A special cache used to store objects that are being...';
# Dump of table date_format_locale
# ------------------------------------------------------------
DROP TABLE IF EXISTS `date_format_locale`;
CREATE TABLE `date_format_locale` (
`format` varchar(100) NOT NULL COMMENT 'The date format string.',
`type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
`language` varchar(12) NOT NULL COMMENT 'A languages.language for this format to be used with.',
PRIMARY KEY (`type`,`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats for each locale.';
# Dump of table date_format_type
# ------------------------------------------------------------
DROP TABLE IF EXISTS `date_format_type`;
CREATE TABLE `date_format_type` (
`type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
`title` varchar(255) NOT NULL COMMENT 'The human readable name of the format type.',
`locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether or not this is a system provided format.',
PRIMARY KEY (`type`),
KEY `title` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configured date format types.';
LOCK TABLES `date_format_type` WRITE;
/*!40000 ALTER TABLE `date_format_type` DISABLE KEYS */;
INSERT INTO `date_format_type` (`type`, `title`, `locked`)
VALUES
('long','Long',1),
('medium','Medium',1),
('short','Short',1);
/*!40000 ALTER TABLE `date_format_type` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table date_formats
# ------------------------------------------------------------
DROP TABLE IF EXISTS `date_formats`;
CREATE TABLE `date_formats` (
`dfid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The date format identifier.',
`format` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The date format string.',
`type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
`locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether or not this format can be modified.',
PRIMARY KEY (`dfid`),
UNIQUE KEY `formats` (`format`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats.';
LOCK TABLES `date_formats` WRITE;
/*!40000 ALTER TABLE `date_formats` DISABLE KEYS */;
INSERT INTO `date_formats` (`dfid`, `format`, `type`, `locked`)
VALUES
(1,X'592D6D2D6420483A69','short',1),
(2,X'6D2F642F59202D20483A69','short',1),
(3,X'642F6D2F59202D20483A69','short',1),
(4,X'592F6D2F64202D20483A69','short',1),
(5,X'642E6D2E59202D20483A69','short',1),
(6,X'6D2F642F59202D20673A6961','short',1),
(7,X'642F6D2F59202D20673A6961','short',1),
(8,X'592F6D2F64202D20673A6961','short',1),
(9,X'4D206A2059202D20483A69','short',1),
(10,X'6A204D2059202D20483A69','short',1),
(11,X'59204D206A202D20483A69','short',1),
(12,X'4D206A2059202D20673A6961','short',1),
(13,X'6A204D2059202D20673A6961','short',1),
(14,X'59204D206A202D20673A6961','short',1),
(15,X'442C20592D6D2D6420483A69','medium',1),
(16,X'442C206D2F642F59202D20483A69','medium',1),
(17,X'442C20642F6D2F59202D20483A69','medium',1),
(18,X'442C20592F6D2F64202D20483A69','medium',1),
(19,X'46206A2C2059202D20483A69','medium',1),
(20,X'6A20462C2059202D20483A69','medium',1),
(21,X'592C2046206A202D20483A69','medium',1),
(22,X'442C206D2F642F59202D20673A6961','medium',1),
(23,X'442C20642F6D2F59202D20673A6961','medium',1),
(24,X'442C20592F6D2F64202D20673A6961','medium',1),
(25,X'46206A2C2059202D20673A6961','medium',1),
(26,X'6A20462059202D20673A6961','medium',1),
(27,X'592C2046206A202D20673A6961','medium',1),
(28,X'6A2E20462059202D20473A69','medium',1),
(29,X'6C2C2046206A2C2059202D20483A69','long',1),
(30,X'6C2C206A20462C2059202D20483A69','long',1),
(31,X'6C2C20592C202046206A202D20483A69','long',1),
(32,X'6C2C2046206A2C2059202D20673A6961','long',1),
(33,X'6C2C206A20462059202D20673A6961','long',1),
(34,X'6C2C20592C202046206A202D20673A6961','long',1),
(35,X'6C2C206A2E20462059202D20473A69','long',1);
/*!40000 ALTER TABLE `date_formats` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table field_config
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_config`;
CREATE TABLE `field_config` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field',
`field_name` varchar(32) NOT NULL COMMENT 'The name of this field. Non-deleted field names are unique, but multiple deleted fields can have the same name.',
`type` varchar(128) NOT NULL COMMENT 'The type of this field.',
`module` varchar(128) NOT NULL DEFAULT '' COMMENT 'The module that implements the field type.',
`active` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the module that implements the field type is enabled.',
`storage_type` varchar(128) NOT NULL COMMENT 'The storage backend for the field.',
`storage_module` varchar(128) NOT NULL DEFAULT '' COMMENT 'The module that implements the storage backend.',
`storage_active` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the module that implements the storage backend is enabled.',
`locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT '@TODO',
`data` longblob NOT NULL COMMENT 'Serialized data containing the field properties that do not warrant a dedicated column.',
`cardinality` tinyint(4) NOT NULL DEFAULT '0',
`translatable` tinyint(4) NOT NULL DEFAULT '0',
`deleted` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `field_name` (`field_name`),
KEY `active` (`active`),
KEY `storage_active` (`storage_active`),
KEY `deleted` (`deleted`),
KEY `module` (`module`),
KEY `storage_module` (`storage_module`),
KEY `type` (`type`),
KEY `storage_type` (`storage_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `field_config` WRITE;
/*!40000 ALTER TABLE `field_config` DISABLE KEYS */;
INSERT INTO `field_config` (`id`, `field_name`, `type`, `module`, `active`, `storage_type`, `storage_module`, `storage_active`, `locked`, `data`, `cardinality`, `translatable`, `deleted`)
VALUES
(1,'comment_body','text_long','text',1,'field_sql_storage','field_sql_storage',1,0,X'613A363A7B733A31323A22656E746974795F7479706573223B613A313A7B693A303B733A373A22636F6D6D656E74223B7D733A31323A227472616E736C617461626C65223B623A303B733A383A2273657474696E6773223B613A303A7B7D733A373A2273746F72616765223B613A343A7B733A343A2274797065223B733A31373A226669656C645F73716C5F73746F72616765223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A31373A226669656C645F73716C5F73746F72616765223B733A363A22616374697665223B693A313B7D733A31323A22666F726569676E206B657973223B613A313A7B733A363A22666F726D6174223B613A323A7B733A353A227461626C65223B733A31333A2266696C7465725F666F726D6174223B733A373A22636F6C756D6E73223B613A313A7B733A363A22666F726D6174223B733A363A22666F726D6174223B7D7D7D733A373A22696E6465786573223B613A313A7B733A363A22666F726D6174223B613A313A7B693A303B733A363A22666F726D6174223B7D7D7D',1,0,0),
(2,'body','text_with_summary','text',1,'field_sql_storage','field_sql_storage',1,0,X'613A363A7B733A31323A22656E746974795F7479706573223B613A313A7B693A303B733A343A226E6F6465223B7D733A31323A227472616E736C617461626C65223B623A303B733A383A2273657474696E6773223B613A303A7B7D733A373A2273746F72616765223B613A343A7B733A343A2274797065223B733A31373A226669656C645F73716C5F73746F72616765223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A31373A226669656C645F73716C5F73746F72616765223B733A363A22616374697665223B693A313B7D733A31323A22666F726569676E206B657973223B613A313A7B733A363A22666F726D6174223B613A323A7B733A353A227461626C65223B733A31333A2266696C7465725F666F726D6174223B733A373A22636F6C756D6E73223B613A313A7B733A363A22666F726D6174223B733A363A22666F726D6174223B7D7D7D733A373A22696E6465786573223B613A313A7B733A363A22666F726D6174223B613A313A7B693A303B733A363A22666F726D6174223B7D7D7D',1,0,0),
(3,'field_tags','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,X'613A363A7B733A383A2273657474696E6773223B613A313A7B733A31343A22616C6C6F7765645F76616C756573223B613A313A7B693A303B613A323A7B733A31303A22766F636162756C617279223B733A343A2274616773223B733A363A22706172656E74223B693A303B7D7D7D733A31323A22656E746974795F7479706573223B613A303A7B7D733A31323A227472616E736C617461626C65223B623A303B733A373A2273746F72616765223B613A343A7B733A343A2274797065223B733A31373A226669656C645F73716C5F73746F72616765223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A31373A226669656C645F73716C5F73746F72616765223B733A363A22616374697665223B693A313B7D733A31323A22666F726569676E206B657973223B613A313A7B733A333A22746964223B613A323A7B733A353A227461626C65223B733A31383A227461786F6E6F6D795F7465726D5F64617461223B733A373A22636F6C756D6E73223B613A313A7B733A333A22746964223B733A333A22746964223B7D7D7D733A373A22696E6465786573223B613A313A7B733A333A22746964223B613A313A7B693A303B733A333A22746964223B7D7D7D',-1,0,0),
(4,'field_image','image','image',1,'field_sql_storage','field_sql_storage',1,0,X'613A363A7B733A373A22696E6465786573223B613A313A7B733A333A22666964223B613A313A7B693A303B733A333A22666964223B7D7D733A383A2273657474696E6773223B613A323A7B733A31303A227572695F736368656D65223B733A363A227075626C6963223B733A31333A2264656661756C745F696D616765223B623A303B7D733A373A2273746F72616765223B613A343A7B733A343A2274797065223B733A31373A226669656C645F73716C5F73746F72616765223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A31373A226669656C645F73716C5F73746F72616765223B733A363A22616374697665223B693A313B7D733A31323A22656E746974795F7479706573223B613A303A7B7D733A31323A227472616E736C617461626C65223B623A303B733A31323A22666F726569676E206B657973223B613A313A7B733A333A22666964223B613A323A7B733A353A227461626C65223B733A31323A2266696C655F6D616E61676564223B733A373A22636F6C756D6E73223B613A313A7B733A333A22666964223B733A333A22666964223B7D7D7D7D',1,0,0);
/*!40000 ALTER TABLE `field_config` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table field_config_instance
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_config_instance`;
CREATE TABLE `field_config_instance` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field instance',
`field_id` int(11) NOT NULL COMMENT 'The identifier of the field attached by this instance',
`field_name` varchar(32) NOT NULL DEFAULT '',
`entity_type` varchar(32) NOT NULL DEFAULT '',
`bundle` varchar(128) NOT NULL DEFAULT '',
`data` longblob NOT NULL,
`deleted` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `field_name_bundle` (`field_name`,`entity_type`,`bundle`),
KEY `deleted` (`deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `field_config_instance` WRITE;
/*!40000 ALTER TABLE `field_config_instance` DISABLE KEYS */;
INSERT INTO `field_config_instance` (`id`, `field_id`, `field_name`, `entity_type`, `bundle`, `data`, `deleted`)
VALUES
(1,1,'comment_body','comment','comment_node_page',X'613A363A7B733A353A226C6162656C223B733A373A22436F6D6D656E74223B733A383A2273657474696E6773223B613A323A7B733A31353A22746578745F70726F63657373696E67223B693A313B733A31383A22757365725F72656769737465725F666F726D223B623A303B7D733A383A227265717569726564223B623A313B733A373A22646973706C6179223B613A313A7B733A373A2264656661756C74223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A31323A22746578745F64656661756C74223B733A363A22776569676874223B693A303B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A343A2274657874223B7D7D733A363A22776964676574223B613A343A7B733A343A2274797065223B733A31333A22746578745F7465787461726561223B733A383A2273657474696E6773223B613A313A7B733A343A22726F7773223B693A353B7D733A363A22776569676874223B693A303B733A363A226D6F64756C65223B733A343A2274657874223B7D733A31313A226465736372697074696F6E223B733A303A22223B7D',0),
(2,2,'body','node','page',X'613A363A7B733A353A226C6162656C223B733A343A22426F6479223B733A363A22776964676574223B613A343A7B733A343A2274797065223B733A32363A22746578745F74657874617265615F776974685F73756D6D617279223B733A383A2273657474696E6773223B613A323A7B733A343A22726F7773223B693A32303B733A31323A2273756D6D6172795F726F7773223B693A353B7D733A363A22776569676874223B693A2D343B733A363A226D6F64756C65223B733A343A2274657874223B7D733A383A2273657474696E6773223B613A333A7B733A31353A22646973706C61795F73756D6D617279223B623A313B733A31353A22746578745F70726F63657373696E67223B693A313B733A31383A22757365725F72656769737465725F666F726D223B623A303B7D733A373A22646973706C6179223B613A323A7B733A373A2264656661756C74223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A31323A22746578745F64656661756C74223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A343A2274657874223B733A363A22776569676874223B693A303B7D733A363A22746561736572223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A32333A22746578745F73756D6D6172795F6F725F7472696D6D6564223B733A383A2273657474696E6773223B613A313A7B733A31313A227472696D5F6C656E677468223B693A3630303B7D733A363A226D6F64756C65223B733A343A2274657874223B733A363A22776569676874223B693A303B7D7D733A383A227265717569726564223B623A303B733A31313A226465736372697074696F6E223B733A303A22223B7D',0),
(3,1,'comment_body','comment','comment_node_article',X'613A363A7B733A353A226C6162656C223B733A373A22436F6D6D656E74223B733A383A2273657474696E6773223B613A323A7B733A31353A22746578745F70726F63657373696E67223B693A313B733A31383A22757365725F72656769737465725F666F726D223B623A303B7D733A383A227265717569726564223B623A313B733A373A22646973706C6179223B613A313A7B733A373A2264656661756C74223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A31323A22746578745F64656661756C74223B733A363A22776569676874223B693A303B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A343A2274657874223B7D7D733A363A22776964676574223B613A343A7B733A343A2274797065223B733A31333A22746578745F7465787461726561223B733A383A2273657474696E6773223B613A313A7B733A343A22726F7773223B693A353B7D733A363A22776569676874223B693A303B733A363A226D6F64756C65223B733A343A2274657874223B7D733A31313A226465736372697074696F6E223B733A303A22223B7D',0),
(4,2,'body','node','article',X'613A363A7B733A353A226C6162656C223B733A343A22426F6479223B733A363A22776964676574223B613A343A7B733A343A2274797065223B733A32363A22746578745F74657874617265615F776974685F73756D6D617279223B733A383A2273657474696E6773223B613A323A7B733A343A22726F7773223B693A32303B733A31323A2273756D6D6172795F726F7773223B693A353B7D733A363A22776569676874223B733A323A222D34223B733A363A226D6F64756C65223B733A343A2274657874223B7D733A383A2273657474696E6773223B613A333A7B733A31353A22646973706C61795F73756D6D617279223B623A313B733A31353A22746578745F70726F63657373696E67223B693A313B733A31383A22757365725F72656769737465725F666F726D223B623A303B7D733A373A22646973706C6179223B613A323A7B733A373A2264656661756C74223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A31323A22746578745F64656661756C74223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A343A2274657874223B733A363A22776569676874223B693A303B7D733A363A22746561736572223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A32333A22746578745F73756D6D6172795F6F725F7472696D6D6564223B733A383A2273657474696E6773223B613A313A7B733A31313A227472696D5F6C656E677468223B693A3630303B7D733A363A226D6F64756C65223B733A343A2274657874223B733A363A22776569676874223B693A303B7D7D733A383A227265717569726564223B623A303B733A31313A226465736372697074696F6E223B733A303A22223B7D',0),
(5,3,'field_tags','node','article',X'613A363A7B733A353A226C6162656C223B733A343A2254616773223B733A31313A226465736372697074696F6E223B733A36333A22456E746572206120636F6D6D612D736570617261746564206C697374206F6620776F72647320746F20646573637269626520796F757220636F6E74656E742E223B733A363A22776964676574223B613A343A7B733A343A2274797065223B733A32313A227461786F6E6F6D795F6175746F636F6D706C657465223B733A363A22776569676874223B733A323A222D34223B733A383A2273657474696E6773223B613A323A7B733A343A2273697A65223B693A36303B733A31373A226175746F636F6D706C6574655F70617468223B733A32313A227461786F6E6F6D792F6175746F636F6D706C657465223B7D733A363A226D6F64756C65223B733A383A227461786F6E6F6D79223B7D733A373A22646973706C6179223B613A323A7B733A373A2264656661756C74223B613A353A7B733A343A2274797065223B733A32383A227461786F6E6F6D795F7465726D5F7265666572656E63655F6C696E6B223B733A363A22776569676874223B693A31303B733A353A226C6162656C223B733A353A2261626F7665223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A383A227461786F6E6F6D79223B7D733A363A22746561736572223B613A353A7B733A343A2274797065223B733A32383A227461786F6E6F6D795F7465726D5F7265666572656E63655F6C696E6B223B733A363A22776569676874223B693A31303B733A353A226C6162656C223B733A353A2261626F7665223B733A383A2273657474696E6773223B613A303A7B7D733A363A226D6F64756C65223B733A383A227461786F6E6F6D79223B7D7D733A383A2273657474696E6773223B613A313A7B733A31383A22757365725F72656769737465725F666F726D223B623A303B7D733A383A227265717569726564223B623A303B7D',0),
(6,4,'field_image','node','article',X'613A363A7B733A353A226C6162656C223B733A353A22496D616765223B733A31313A226465736372697074696F6E223B733A34303A2255706C6F616420616E20696D61676520746F20676F207769746820746869732061727469636C652E223B733A383A227265717569726564223B623A303B733A383A2273657474696E6773223B613A393A7B733A31343A2266696C655F6469726563746F7279223B733A31313A226669656C642F696D616765223B733A31353A2266696C655F657874656E73696F6E73223B733A31363A22706E6720676966206A7067206A706567223B733A31323A226D61785F66696C6573697A65223B733A303A22223B733A31343A226D61785F7265736F6C7574696F6E223B733A303A22223B733A31343A226D696E5F7265736F6C7574696F6E223B733A303A22223B733A393A22616C745F6669656C64223B623A313B733A31313A227469746C655F6669656C64223B733A303A22223B733A31333A2264656661756C745F696D616765223B693A303B733A31383A22757365725F72656769737465725F666F726D223B623A303B7D733A363A22776964676574223B613A343A7B733A343A2274797065223B733A31313A22696D6167655F696D616765223B733A383A2273657474696E6773223B613A323A7B733A31383A2270726F67726573735F696E64696361746F72223B733A383A227468726F62626572223B733A31393A22707265766965775F696D6167655F7374796C65223B733A393A227468756D626E61696C223B7D733A363A22776569676874223B733A323A222D31223B733A363A226D6F64756C65223B733A353A22696D616765223B7D733A373A22646973706C6179223B613A323A7B733A373A2264656661756C74223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A353A22696D616765223B733A383A2273657474696E6773223B613A323A7B733A31313A22696D6167655F7374796C65223B733A353A226C61726765223B733A31303A22696D6167655F6C696E6B223B733A303A22223B7D733A363A22776569676874223B693A2D313B733A363A226D6F64756C65223B733A353A22696D616765223B7D733A363A22746561736572223B613A353A7B733A353A226C6162656C223B733A363A2268696464656E223B733A343A2274797065223B733A353A22696D616765223B733A383A2273657474696E6773223B613A323A7B733A31313A22696D6167655F7374796C65223B733A363A226D656469756D223B733A31303A22696D6167655F6C696E6B223B733A373A22636F6E74656E74223B7D733A363A22776569676874223B693A2D313B733A363A226D6F64756C65223B733A353A22696D616765223B7D7D7D',0);
/*!40000 ALTER TABLE `field_config_instance` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table field_data_body
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_data_body`;
CREATE TABLE `field_data_body` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`body_value` longtext,
`body_summary` longtext,
`body_format` varchar(255) DEFAULT NULL,
PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `body_format` (`body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 2 (body)';
# Dump of table field_data_comment_body
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_data_comment_body`;
CREATE TABLE `field_data_comment_body` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`comment_body_value` longtext,
`comment_body_format` varchar(255) DEFAULT NULL,
PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `comment_body_format` (`comment_body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 1 (comment_body)';
# Dump of table field_data_field_image
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_data_field_image`;
CREATE TABLE `field_data_field_image` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_image_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
`field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
`field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
`field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
`field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_image_fid` (`field_image_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 4 (field_image)';
# Dump of table field_data_field_tags
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_data_field_tags`;
CREATE TABLE `field_data_field_tags` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_tags_tid` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_tags_tid` (`field_tags_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 3 (field_tags)';
# Dump of table field_revision_body
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_revision_body`;
CREATE TABLE `field_revision_body` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`body_value` longtext,
`body_summary` longtext,
`body_format` varchar(255) DEFAULT NULL,
PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `body_format` (`body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 2 (body)';
# Dump of table field_revision_comment_body
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_revision_comment_body`;
CREATE TABLE `field_revision_comment_body` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`comment_body_value` longtext,
`comment_body_format` varchar(255) DEFAULT NULL,
PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `comment_body_format` (`comment_body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 1 (comment_body)';
# Dump of table field_revision_field_image
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_revision_field_image`;
CREATE TABLE `field_revision_field_image` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_image_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
`field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
`field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
`field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
`field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_image_fid` (`field_image_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 4 (field_image)';
# Dump of table field_revision_field_tags
# ------------------------------------------------------------
DROP TABLE IF EXISTS `field_revision_field_tags`;
CREATE TABLE `field_revision_field_tags` (
`entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
`bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
`deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
`entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
`revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
`language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
`delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
`field_tags_tid` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
KEY `entity_type` (`entity_type`),
KEY `bundle` (`bundle`),
KEY `deleted` (`deleted`),
KEY `entity_id` (`entity_id`),
KEY `revision_id` (`revision_id`),
KEY `language` (`language`),
KEY `field_tags_tid` (`field_tags_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 3 (field_tags)';
# Dump of table file_managed
# ------------------------------------------------------------
DROP TABLE IF EXISTS `file_managed`;
CREATE TABLE `file_managed` (
`fid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'File ID.',
`uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid of the user who is associated with the file.',
`filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the file with no path components. This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.',
`uri` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The URI to access the file (either local or remote).',
`filemime` varchar(255) NOT NULL DEFAULT '' COMMENT 'The file’s MIME type.',
`filesize` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'The size of the file in bytes.',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A field indicating the status of the file. Two status are defined in core: temporary (0) and permanent (1). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.',
`timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'UNIX timestamp for when the file was added.',
PRIMARY KEY (`fid`),
UNIQUE KEY `uri` (`uri`),
KEY `uid` (`uid`),
KEY `status` (`status`),
KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.';
# Dump of table file_usage
# ------------------------------------------------------------
DROP TABLE IF EXISTS `file_usage`;
CREATE TABLE `file_usage` (
`fid` int(10) unsigned NOT NULL COMMENT 'File ID.',
`module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.',
`type` varchar(64) NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.',
`id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The primary key of the object using the file.',
`count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The number of times this file is used by this object.',
PRIMARY KEY (`fid`,`type`,`id`,`module`),
KEY `type_id` (`type`,`id`),
KEY `fid_count` (`fid`,`count`),
KEY `fid_module` (`fid`,`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Track where a file is used.';
# Dump of table filter
# ------------------------------------------------------------
DROP TABLE IF EXISTS `filter`;
CREATE TABLE `filter` (
`format` varchar(255) NOT NULL COMMENT 'Foreign key: The filter_format.format to which this filter is assigned.',
`module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The origin module of the filter.',
`name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Name of the filter being referenced.',
`weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight of filter within format.',
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'Filter enabled status. (1 = enabled, 0 = disabled)',
`settings` longblob COMMENT 'A serialized array of name value pairs that store the filter settings for the specific format.',
PRIMARY KEY (`format`,`name`),
KEY `list` (`weight`,`module`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table that maps filters (HTML corrector) to text formats ...';
LOCK TABLES `filter` WRITE;
/*!40000 ALTER TABLE `filter` DISABLE KEYS */;
INSERT INTO `filter` (`format`, `module`, `name`, `weight`, `status`, `settings`)
VALUES
('filtered_html','filter','filter_autop',2,1,X'613A303A7B7D'),
('filtered_html','filter','filter_html',1,1,X'613A333A7B733A31323A22616C6C6F7765645F68746D6C223B733A37343A223C613E203C656D3E203C7374726F6E673E203C636974653E203C626C6F636B71756F74653E203C636F64653E203C756C3E203C6F6C3E203C6C693E203C646C3E203C64743E203C64643E223B733A31363A2266696C7465725F68746D6C5F68656C70223B693A313B733A32303A2266696C7465725F68746D6C5F6E6F666F6C6C6F77223B693A303B7D'),