Issue #2510072 by phenaproxima: UTF-8 support in MySQL driver breaks migrate dump files
parent
e6182f966e
commit
143d7b2a06
|
@ -49,6 +49,7 @@ class Access extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("access")->fields(array(
|
$this->database->insert("access")->fields(array(
|
||||||
'aid',
|
'aid',
|
||||||
|
@ -60,4 +61,4 @@ class Access extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#906d752540b89c65dcab417eeb749669
|
#131cb9eb08548867ec92c3373ac67a42
|
||||||
|
|
|
@ -55,6 +55,7 @@ class Actions extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("actions")->fields(array(
|
$this->database->insert("actions")->fields(array(
|
||||||
'aid',
|
'aid',
|
||||||
|
@ -133,4 +134,4 @@ class Actions extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#8839ba77a788fdd11f0097242a686408
|
#31f375c70c6a362432e25e1256101076
|
||||||
|
|
|
@ -32,6 +32,7 @@ class ActionsAid extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("actions_aid")->fields(array(
|
$this->database->insert("actions_aid")->fields(array(
|
||||||
'aid',
|
'aid',
|
||||||
|
@ -40,4 +41,4 @@ class ActionsAid extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#1c907838b8bafd88d0d3141fe32b41f6
|
#a58e383f81c657ac36eabc980e148fbd
|
||||||
|
|
|
@ -48,6 +48,7 @@ class AggregatorCategory extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_category")->fields(array(
|
$this->database->insert("aggregator_category")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -59,4 +60,4 @@ class AggregatorCategory extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#f9b4a42a7a6c1f7bd027bd95c1a4ef83
|
#836a3ecaf192c09b996431f0c4b71fe6
|
||||||
|
|
|
@ -89,6 +89,7 @@ class AggregatorFeed extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_feed")->fields(array(
|
$this->database->insert("aggregator_feed")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -119,4 +120,4 @@ class AggregatorFeed extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#57eeb4c900631cda398a543689a156cb
|
#662f4470777c1bda31d407bb5ba21346
|
||||||
|
|
|
@ -70,6 +70,7 @@ class AggregatorItem extends DrupalDumpBase {
|
||||||
'length' => '255',
|
'length' => '255',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_item")->fields(array(
|
$this->database->insert("aggregator_item")->fields(array(
|
||||||
'iid',
|
'iid',
|
||||||
|
@ -94,4 +95,4 @@ class AggregatorItem extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#1164613d3b2596dfdfddefdc52da8bc7
|
#70ab48fd0f8a2fca2f51df61fdef0443
|
||||||
|
|
|
@ -50,6 +50,7 @@ class Authmap extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("authmap")->fields(array(
|
$this->database->insert("authmap")->fields(array(
|
||||||
'aid',
|
'aid',
|
||||||
|
@ -61,4 +62,4 @@ class Authmap extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#291a74a5eac3448929eccb583ec5b6bb
|
#265fd37faf94406aa5ae64f834c0c09c
|
||||||
|
|
|
@ -47,6 +47,7 @@ class Batch extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("batch")->fields(array(
|
$this->database->insert("batch")->fields(array(
|
||||||
'bid',
|
'bid',
|
||||||
|
@ -58,4 +59,4 @@ class Batch extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#28b4106c5eefd0a82f2fdc6d870fde78
|
#7e3b35a2ee513385c7a63500e1a588c6
|
||||||
|
|
|
@ -102,6 +102,7 @@ class Blocks extends DrupalDumpBase {
|
||||||
'default' => '1',
|
'default' => '1',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("blocks")->fields(array(
|
$this->database->insert("blocks")->fields(array(
|
||||||
'bid',
|
'bid',
|
||||||
|
@ -402,4 +403,4 @@ class Blocks extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#1f4dbdf6b524a1b4ddea8cbb306caf19
|
#aecc8e1067d73824c43bfaf26f9ebf8c
|
||||||
|
|
|
@ -44,6 +44,7 @@ class BlocksRoles extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("blocks_roles")->fields(array(
|
$this->database->insert("blocks_roles")->fields(array(
|
||||||
'module',
|
'module',
|
||||||
|
@ -62,4 +63,4 @@ class BlocksRoles extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#29243885f79abad280834034dca71856
|
#41ed39f4e800ee584535def863835a80
|
||||||
|
|
|
@ -47,6 +47,7 @@ class Book extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("book")->fields(array(
|
$this->database->insert("book")->fields(array(
|
||||||
'mlid',
|
'mlid',
|
||||||
|
@ -77,4 +78,4 @@ class Book extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#a91ece4a284d1ba43d247d623edd7a74
|
#6ddf63f063b1bfa617a96764d859a0f1
|
||||||
|
|
|
@ -49,6 +49,7 @@ class Boxes extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("boxes")->fields(array(
|
$this->database->insert("boxes")->fields(array(
|
||||||
'bid',
|
'bid',
|
||||||
|
@ -70,4 +71,4 @@ class Boxes extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#fc7fbf9ec57c0c76fceab84ab55b9da8
|
#2210f6e6a50ddd9c00900cc7e54a5b43
|
||||||
|
|
|
@ -60,6 +60,7 @@ class Cache extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache")->fields(array(
|
$this->database->insert("cache")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class Cache extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#a2937f7bc1d1a464b3497945341caba4
|
#67029a22a76da3708c39edc1ea19e8da
|
||||||
|
|
|
@ -60,6 +60,7 @@ class CacheBlock extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_block")->fields(array(
|
$this->database->insert("cache_block")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class CacheBlock extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#e14abfc02ee25adc633afe98b414ca08
|
#a8cd855bd812efa861fb2b1b16a60c88
|
||||||
|
|
|
@ -73,6 +73,7 @@ class CacheBootstrap extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_bootstrap")->fields(array(
|
$this->database->insert("cache_bootstrap")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -88,4 +89,4 @@ class CacheBootstrap extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#fca41159793677ed4462364018ae2af2
|
#61ee75983133914b8b02a29869f7ced7
|
||||||
|
|
|
@ -73,6 +73,7 @@ class CacheConfig extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_config")->fields(array(
|
$this->database->insert("cache_config")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -88,4 +89,4 @@ class CacheConfig extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#f438fd9400357de86c6fd107fc245404
|
#27adbbdaf170149b5b6f3f9d35fa9225
|
||||||
|
|
|
@ -60,6 +60,7 @@ class CacheContent extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_content")->fields(array(
|
$this->database->insert("cache_content")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class CacheContent extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#0e3b21ac24050e18a4cc81c2d0bce590
|
#156a6b622459d99a430e07e3f88a4952
|
||||||
|
|
|
@ -73,6 +73,7 @@ class CacheDiscovery extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_discovery")->fields(array(
|
$this->database->insert("cache_discovery")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -88,4 +89,4 @@ class CacheDiscovery extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#f3ada35da76a5f007b180bb4d541ec4a
|
#2bea5eb7dd5defc47c3bfb5fe004b0ed
|
||||||
|
|
|
@ -60,6 +60,7 @@ class CacheFilter extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_filter")->fields(array(
|
$this->database->insert("cache_filter")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class CacheFilter extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#6e167566ed12156e16a618cf6437ae71
|
#2af467369782b455803a601b8b0b2ee7
|
||||||
|
|
|
@ -60,6 +60,7 @@ class CacheForm extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_form")->fields(array(
|
$this->database->insert("cache_form")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class CacheForm extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#71bde276580282fc3514e06f974e965a
|
#bfd409b58ceabeddabf389a8efe8d332
|
||||||
|
|
|
@ -60,6 +60,7 @@ class CacheMenu extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_menu")->fields(array(
|
$this->database->insert("cache_menu")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class CacheMenu extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#ce732ace4abb70c89febc7c07f1d7165
|
#8619c81798239c1dacaaef75f55ee4be
|
||||||
|
|
|
@ -60,6 +60,7 @@ class CachePage extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_page")->fields(array(
|
$this->database->insert("cache_page")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class CachePage extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#145b0053fcccd8c7b5adb09fa1659341
|
#79807273423db1b6c053e415f435d597
|
||||||
|
|
|
@ -60,6 +60,7 @@ class CacheUpdate extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_update")->fields(array(
|
$this->database->insert("cache_update")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -73,4 +74,4 @@ class CacheUpdate extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#c9fb9f21289ab5b655d8c4714ef40a83
|
#1da5dab9fe3efe5aeb5fabdd1a4fb718
|
||||||
|
|
|
@ -44,6 +44,7 @@ class Cachetags extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cachetags")->fields(array(
|
$this->database->insert("cachetags")->fields(array(
|
||||||
'tag',
|
'tag',
|
||||||
|
@ -54,4 +55,4 @@ class Cachetags extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#618a5d0e2f6bb7fbd27a98ec94c37cc5
|
#ffd63ebb3a715c44aeb48e88bde508fa
|
||||||
|
|
|
@ -105,6 +105,7 @@ class Comments extends DrupalDumpBase {
|
||||||
'length' => '255',
|
'length' => '255',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("comments")->fields(array(
|
$this->database->insert("comments")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -171,4 +172,4 @@ class Comments extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#8c1753bf890ededa04bcc9ca759d0d01
|
#8ee26900ad900de3abde3e74f89d6765
|
||||||
|
|
|
@ -44,6 +44,7 @@ class Config extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("config")->fields(array(
|
$this->database->insert("config")->fields(array(
|
||||||
'collection',
|
'collection',
|
||||||
|
@ -58,4 +59,4 @@ class Config extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#c4098c1fa12512d761fcb57f8d540a69
|
#9e924a1aaaf751c5b1db9fb69a9fa7dd
|
||||||
|
|
|
@ -60,6 +60,7 @@ class Contact extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("contact")->fields(array(
|
$this->database->insert("contact")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -94,4 +95,4 @@ class Contact extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#e530f86fd4d7ae2251ec4f485ae0e917
|
#e97c7fe79e2079e3935c6cde6871fab3
|
||||||
|
|
|
@ -55,6 +55,7 @@ class ContentFieldImage extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_field_image")->fields(array(
|
$this->database->insert("content_field_image")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -85,4 +86,4 @@ class ContentFieldImage extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#4e8dc9935bae5fbba4b2364a54cd3cda
|
#2db0e7aa8c758996467e5920e6cc888b
|
||||||
|
|
|
@ -54,6 +54,7 @@ class ContentFieldMultivalue extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_field_multivalue")->fields(array(
|
$this->database->insert("content_field_multivalue")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -75,4 +76,4 @@ class ContentFieldMultivalue extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#6e171ee9ca107b88bf7395989816972b
|
#3c8ab8a4159f22b3d38be702b6eaa647
|
||||||
|
|
|
@ -51,6 +51,7 @@ class ContentFieldTest extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_field_test")->fields(array(
|
$this->database->insert("content_field_test")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -82,4 +83,4 @@ class ContentFieldTest extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#2bb195409b310fb0707508fb07eb6e1e
|
#e7860a4b52cecdb1a6d2fed28665d5e4
|
||||||
|
|
|
@ -53,6 +53,7 @@ class ContentFieldTestTwo extends DrupalDumpBase {
|
||||||
'length' => '11',
|
'length' => '11',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_field_test_two")->fields(array(
|
$this->database->insert("content_field_test_two")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -89,4 +90,4 @@ class ContentFieldTestTwo extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#4504cbbc74e0d013eb107a371d85275c
|
#c4cffd2dbffd6ffdc97ef5b1cb4e0e3a
|
||||||
|
|
|
@ -62,6 +62,7 @@ class ContentGroup extends DrupalDumpBase {
|
||||||
'type_name',
|
'type_name',
|
||||||
'group_name',
|
'group_name',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_group")->fields(array(
|
$this->database->insert("content_group")->fields(array(
|
||||||
'group_type',
|
'group_type',
|
||||||
|
@ -75,4 +76,4 @@ class ContentGroup extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#b47ad3b4a122b061a21b30afde0d1a7d
|
#7e70933ab00570caa7341dab6424469a
|
||||||
|
|
|
@ -46,6 +46,7 @@ class ContentGroupFields extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_group_fields")->fields(array(
|
$this->database->insert("content_group_fields")->fields(array(
|
||||||
'type_name',
|
'type_name',
|
||||||
|
@ -56,4 +57,4 @@ class ContentGroupFields extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#e946ecf0b1318185977b9a7b401277a2
|
#d27d7713a767febbe851794916fc9b0b
|
||||||
|
|
|
@ -84,6 +84,7 @@ class ContentNodeField extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_node_field")->fields(array(
|
$this->database->insert("content_node_field")->fields(array(
|
||||||
'field_name',
|
'field_name',
|
||||||
|
@ -321,4 +322,4 @@ class ContentNodeField extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#09ed2a7b0dd3a17568ba9fc4650b18ce
|
#e1fbb3a444896287af59cd6395555fbf
|
||||||
|
|
|
@ -84,6 +84,7 @@ class ContentNodeFieldInstance extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_node_field_instance")->fields(array(
|
$this->database->insert("content_node_field_instance")->fields(array(
|
||||||
'field_name',
|
'field_name',
|
||||||
|
@ -332,4 +333,4 @@ class ContentNodeFieldInstance extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#017d067779f912426f8b1c61a06736d7
|
#18e0592c55879f37c24ea67f76ade69a
|
||||||
|
|
|
@ -45,6 +45,7 @@ class ContentTypePage extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_type_page")->fields(array(
|
$this->database->insert("content_type_page")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -63,4 +64,4 @@ class ContentTypePage extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#6452fe645487c928706d25c8299671f2
|
#a22194f55d9c79d0c83e97ee7c96714b
|
||||||
|
|
|
@ -172,6 +172,7 @@ class ContentTypeStory extends DrupalDumpBase {
|
||||||
'primary key' => array(
|
'primary key' => array(
|
||||||
'vid',
|
'vid',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_type_story")->fields(array(
|
$this->database->insert("content_type_story")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -318,4 +319,4 @@ class ContentTypeStory extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#9a56fc4e90fa0eecfefb64eeaee69dfd
|
#e355803b63e8cbefe404f59e30bbf793
|
||||||
|
|
|
@ -51,6 +51,7 @@ class ContentTypeTestPage extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_type_test_page")->fields(array(
|
$this->database->insert("content_type_test_page")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -62,4 +63,4 @@ class ContentTypeTestPage extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#dc14376a79c7efc3a0615ef67fa65021
|
#cc8cbe99b5941aeb7e2ae8f0a5099945
|
||||||
|
|
|
@ -39,6 +39,7 @@ class ContentTypeTestPlanet extends DrupalDumpBase {
|
||||||
'primary key' => array(
|
'primary key' => array(
|
||||||
'vid',
|
'vid',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("content_type_test_planet")->fields(array(
|
$this->database->insert("content_type_test_planet")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -69,4 +70,4 @@ class ContentTypeTestPlanet extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#2f3598809df1de9649ba0f556886687b
|
#d824be8bf53956e1f6e275f010eb1b86
|
||||||
|
|
|
@ -42,6 +42,7 @@ class DateFormatLocale extends DrupalDumpBase {
|
||||||
'type',
|
'type',
|
||||||
'language',
|
'language',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("date_format_locale")->fields(array(
|
$this->database->insert("date_format_locale")->fields(array(
|
||||||
'format',
|
'format',
|
||||||
|
@ -52,4 +53,4 @@ class DateFormatLocale extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#6e387a5e7422422cef12532b9c153f4b
|
#a9092bf2a65e6797eb144166d7a27ddf
|
||||||
|
|
|
@ -42,6 +42,7 @@ class DateFormatTypes extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("date_format_types")->fields(array(
|
$this->database->insert("date_format_types")->fields(array(
|
||||||
'type',
|
'type',
|
||||||
|
@ -64,4 +65,4 @@ class DateFormatTypes extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#7c97d55d743dc7b85be8bfec1a62b542
|
#8eb9b527c9223036f223beecea90c1e1
|
||||||
|
|
|
@ -48,6 +48,7 @@ class DateFormats extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("date_formats")->fields(array(
|
$this->database->insert("date_formats")->fields(array(
|
||||||
'dfid',
|
'dfid',
|
||||||
|
@ -234,4 +235,4 @@ class DateFormats extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#97e7436f13d688d9192a0bb53af2c44c
|
#7b7e1b59dbb8771c5f9dacbfb31bc771
|
||||||
|
|
|
@ -73,6 +73,7 @@ class Event extends DrupalDumpBase {
|
||||||
'default' => '1',
|
'default' => '1',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("event")->fields(array(
|
$this->database->insert("event")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -88,4 +89,4 @@ class Event extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#9dec797ecb37e0c7c7de1563eb2997eb
|
#78a4722634eb7f3ca00a7ced49953072
|
||||||
|
|
|
@ -62,6 +62,7 @@ class EventTimezones extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("event_timezones")->fields(array(
|
$this->database->insert("event_timezones")->fields(array(
|
||||||
'timezone',
|
'timezone',
|
||||||
|
@ -3302,4 +3303,4 @@ class EventTimezones extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#6b7541b69fbd9ffb83e93348c4ba479e
|
#5e6c6fb6a7c2da1e9b5a3d940ea00007
|
||||||
|
|
|
@ -77,6 +77,7 @@ class Files extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("files")->fields(array(
|
$this->database->insert("files")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -137,4 +138,4 @@ class Files extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#8f1133f1395422b45b92652531e2456e
|
#a36145ffe53b2dd78475b37d99e72612
|
||||||
|
|
|
@ -49,6 +49,7 @@ class FilterFormats extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("filter_formats")->fields(array(
|
$this->database->insert("filter_formats")->fields(array(
|
||||||
'format',
|
'format',
|
||||||
|
@ -75,4 +76,4 @@ class FilterFormats extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#bc3c85fe411e79820e50f12d39e1e938
|
#bbec2c10ac788fac1807d23774b34b49
|
||||||
|
|
|
@ -55,6 +55,7 @@ class Filters extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("filters")->fields(array(
|
$this->database->insert("filters")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -133,4 +134,4 @@ class Filters extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#701758e13dac19daf43516e8e4fda93e
|
#e4ed25d991f88bc73a10b840dcc1b004
|
||||||
|
|
|
@ -49,6 +49,7 @@ class Flood extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("flood")->fields(array(
|
$this->database->insert("flood")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -60,4 +61,4 @@ class Flood extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#d2c30c15c28a1c63666a476c2e790efd
|
#45aa7dba444d7433ed402ede2f8c3ed4
|
||||||
|
|
|
@ -45,6 +45,7 @@ class History extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("history")->fields(array(
|
$this->database->insert("history")->fields(array(
|
||||||
'uid',
|
'uid',
|
||||||
|
@ -55,4 +56,4 @@ class History extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#0e3dbc6441f7ccb22ba83da817602b7c
|
#67ec5e178454878819a02345fabb68fd
|
||||||
|
|
|
@ -43,6 +43,7 @@ class MenuCustom extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("menu_custom")->fields(array(
|
$this->database->insert("menu_custom")->fields(array(
|
||||||
'menu_name',
|
'menu_name',
|
||||||
|
@ -65,4 +66,4 @@ class MenuCustom extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#9c671dfb6963883b73f601e2e80739ed
|
#64ae8b573b728a37ea2e345106286576
|
||||||
|
|
|
@ -185,6 +185,7 @@ class MenuLinks extends DrupalDumpBase {
|
||||||
'primary key' => array(
|
'primary key' => array(
|
||||||
'mlid',
|
'mlid',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("menu_links")->fields(array(
|
$this->database->insert("menu_links")->fields(array(
|
||||||
'menu_name',
|
'menu_name',
|
||||||
|
@ -5157,4 +5158,4 @@ class MenuLinks extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#772778397f0cab72b529312c65596781
|
#a594b05a60a1a549e86f4c190c2f2f4e
|
||||||
|
|
|
@ -140,6 +140,7 @@ class MenuRouter extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("menu_router")->fields(array(
|
$this->database->insert("menu_router")->fields(array(
|
||||||
'path',
|
'path',
|
||||||
|
@ -7286,4 +7287,4 @@ class MenuRouter extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#19aef86dbdc4dccee05e1871b5587337
|
#fb802acc1b7c3aa4152fc3f17c404852
|
||||||
|
|
|
@ -118,6 +118,7 @@ class Node extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("node")->fields(array(
|
$this->database->insert("node")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -268,4 +269,4 @@ class Node extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#3840cb30566e683edd201fe502399e30
|
#42987fa1c890b420098af95ec7c86d00
|
||||||
|
|
|
@ -69,6 +69,7 @@ class NodeAccess extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("node_access")->fields(array(
|
$this->database->insert("node_access")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -89,4 +90,4 @@ class NodeAccess extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#ea5aa2d533514421c4f17709b52df802
|
#47b68125af5c4b5deaffc0e19fb29dfb
|
||||||
|
|
|
@ -57,6 +57,7 @@ class NodeCommentStatistics extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("node_comment_statistics")->fields(array(
|
$this->database->insert("node_comment_statistics")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -81,4 +82,4 @@ class NodeCommentStatistics extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#ef7d3494e2e6e8244b4642db7a6fd80b
|
#402ff86fc05564bf2275c27f01c922af
|
||||||
|
|
|
@ -53,6 +53,7 @@ class NodeCounter extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("node_counter")->fields(array(
|
$this->database->insert("node_counter")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -64,4 +65,4 @@ class NodeCounter extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#3590d51296a05c25015308dfde590034
|
#f1e838ae00ed337fca5d80787d9d0748
|
||||||
|
|
|
@ -78,6 +78,7 @@ class NodeRevisions extends DrupalDumpBase {
|
||||||
'primary key' => array(
|
'primary key' => array(
|
||||||
'vid',
|
'vid',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("node_revisions")->fields(array(
|
$this->database->insert("node_revisions")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -204,4 +205,4 @@ class NodeRevisions extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#d3c03811fc5ee9b9b9e57ea430ecaa40
|
#8448741f18a4f40eec7bf466dcab82c1
|
||||||
|
|
|
@ -106,6 +106,7 @@ class NodeType extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("node_type")->fields(array(
|
$this->database->insert("node_type")->fields(array(
|
||||||
'type',
|
'type',
|
||||||
|
@ -292,4 +293,4 @@ class NodeType extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#eed184e2169278835cffc9a9284bd8a1
|
#ce6e29f5a41cf28d10fe3cf149cda559
|
||||||
|
|
|
@ -50,6 +50,7 @@ class Permission extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("permission")->fields(array(
|
$this->database->insert("permission")->fields(array(
|
||||||
'pid',
|
'pid',
|
||||||
|
@ -91,4 +92,4 @@ class Permission extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#4b13b70647b513732a91cd7132b08c01
|
#c9d81025ccba3af28983d7e3bbe38802
|
||||||
|
|
|
@ -97,6 +97,7 @@ class ProfileFields extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("profile_fields")->fields(array(
|
$this->database->insert("profile_fields")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -215,4 +216,4 @@ class ProfileFields extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#5b52398061f1ff1fd90ffb8fb91059a2
|
#59b9afb9195888ed98c5b2dc0c35305c
|
||||||
|
|
|
@ -46,6 +46,7 @@ class ProfileValues extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("profile_values")->fields(array(
|
$this->database->insert("profile_values")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -196,4 +197,4 @@ class ProfileValues extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#b1e19a3e82bda6b4663f322bf2ef354d
|
#9d394555277ddc78f6f904b8df99b3c5
|
||||||
|
|
|
@ -38,6 +38,7 @@ class Role extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("role")->fields(array(
|
$this->database->insert("role")->fields(array(
|
||||||
'rid',
|
'rid',
|
||||||
|
@ -62,4 +63,4 @@ class Role extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#fd210b6b350be0cadc42941b1c4af505
|
#de28ef60b89f3517fe56e03c4d2c1f95
|
||||||
|
|
|
@ -44,6 +44,7 @@ class Semaphore extends DrupalDumpBase {
|
||||||
'scale' => '0',
|
'scale' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("semaphore")->fields(array(
|
$this->database->insert("semaphore")->fields(array(
|
||||||
'name',
|
'name',
|
||||||
|
@ -54,4 +55,4 @@ class Semaphore extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#706fd357b8d41dbeb42dc8508ee1d6ec
|
#8dc0ab3dffca2c2b00141f705dc183a6
|
||||||
|
|
|
@ -61,6 +61,7 @@ class Sessions extends DrupalDumpBase {
|
||||||
'primary key' => array(
|
'primary key' => array(
|
||||||
'sid',
|
'sid',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("sessions")->fields(array(
|
$this->database->insert("sessions")->fields(array(
|
||||||
'uid',
|
'uid',
|
||||||
|
@ -74,4 +75,4 @@ class Sessions extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#6a29834b2e78b58e3f7297351782a489
|
#b7a70fcb91c8af507894a3593f34b7b4
|
||||||
|
|
|
@ -26,7 +26,7 @@ class System extends DrupalDumpBase {
|
||||||
),
|
),
|
||||||
'fields' => array(
|
'fields' => array(
|
||||||
'filename' => array(
|
'filename' => array(
|
||||||
'type' => 'varchar_ascii',
|
'type' => 'varchar',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '255',
|
'length' => '255',
|
||||||
'default' => '',
|
'default' => '',
|
||||||
|
@ -85,6 +85,7 @@ class System extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("system")->fields(array(
|
$this->database->insert("system")->fields(array(
|
||||||
'filename',
|
'filename',
|
||||||
|
@ -916,4 +917,4 @@ class System extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#e15f00f5d9b1c571ee015c40f8fc7b00
|
#f48594e66407fef659b575523a75c6e6
|
||||||
|
|
|
@ -56,6 +56,7 @@ class TermData extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("term_data")->fields(array(
|
$this->database->insert("term_data")->fields(array(
|
||||||
'tid',
|
'tid',
|
||||||
|
@ -104,4 +105,4 @@ class TermData extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#a392bc00314b5ac5a418fb00a52cb821
|
#5bd3c3673e6cc04e09db9b3d3f601c73
|
||||||
|
|
|
@ -41,6 +41,7 @@ class TermHierarchy extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("term_hierarchy")->fields(array(
|
$this->database->insert("term_hierarchy")->fields(array(
|
||||||
'tid',
|
'tid',
|
||||||
|
@ -71,4 +72,4 @@ class TermHierarchy extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#fe08d615c3ac3c59bd3242c55498dba2
|
#4f464394161d2c548911856110c52388
|
||||||
|
|
|
@ -48,6 +48,7 @@ class TermNode extends DrupalDumpBase {
|
||||||
'vid',
|
'vid',
|
||||||
'tid',
|
'tid',
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("term_node")->fields(array(
|
$this->database->insert("term_node")->fields(array(
|
||||||
'nid',
|
'nid',
|
||||||
|
@ -78,4 +79,4 @@ class TermNode extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#73e5dd147f084c8ff3cf2bcd17ce5f97
|
#5aba7dc704d20cec864b7ba64af4c48c
|
||||||
|
|
|
@ -45,6 +45,7 @@ class TermRelation extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("term_relation")->fields(array(
|
$this->database->insert("term_relation")->fields(array(
|
||||||
'trid',
|
'trid',
|
||||||
|
@ -55,4 +56,4 @@ class TermRelation extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#008e1b937f330389e84d1b5604ed3b95
|
#a5ad4b081bfc203e4428bb943e24948a
|
||||||
|
|
|
@ -44,6 +44,7 @@ class TermSynonym extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("term_synonym")->fields(array(
|
$this->database->insert("term_synonym")->fields(array(
|
||||||
'tsid',
|
'tsid',
|
||||||
|
@ -54,4 +55,4 @@ class TermSynonym extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#aaa34560b144351e9a738a70325d69a6
|
#f872b9f69bd357799c9aebbfc65dd736
|
||||||
|
|
|
@ -67,6 +67,7 @@ class Upload extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("upload")->fields(array(
|
$this->database->insert("upload")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -115,4 +116,4 @@ class Upload extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#adb3ab1babf69826197c48bfaa0804ab
|
#16d0b4721b6b58f5ac90214e6b508843
|
||||||
|
|
|
@ -50,6 +50,7 @@ class UrlAlias extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("url_alias")->fields(array(
|
$this->database->insert("url_alias")->fields(array(
|
||||||
'pid',
|
'pid',
|
||||||
|
@ -71,4 +72,4 @@ class UrlAlias extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#53edf1a42f14feb4d3281c52486aa03a
|
#8aa75592c75220bfb2ad948f7528f943
|
||||||
|
|
|
@ -161,6 +161,7 @@ class Users extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("users")->fields(array(
|
$this->database->insert("users")->fields(array(
|
||||||
'uid',
|
'uid',
|
||||||
|
@ -311,4 +312,4 @@ class Users extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#b032f0c73ae282735a94cedc02252629
|
#ce6d7264b7ef5ed1ffe854326893e1e0
|
||||||
|
|
|
@ -41,6 +41,7 @@ class UsersRoles extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("users_roles")->fields(array(
|
$this->database->insert("users_roles")->fields(array(
|
||||||
'uid',
|
'uid',
|
||||||
|
@ -77,4 +78,4 @@ class UsersRoles extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#160988416b8b1403cc0ad78c4c1e944b
|
#6cffea4f67e621d7c498bba3ead7d305
|
||||||
|
|
|
@ -37,6 +37,7 @@ class Variable extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("variable")->fields(array(
|
$this->database->insert("variable")->fields(array(
|
||||||
'name',
|
'name',
|
||||||
|
@ -87,9 +88,6 @@ class Variable extends DrupalDumpBase {
|
||||||
))->values(array(
|
))->values(array(
|
||||||
'name' => 'book_child_type',
|
'name' => 'book_child_type',
|
||||||
'value' => 's:4:"book";',
|
'value' => 's:4:"book";',
|
||||||
))->values(array(
|
|
||||||
'name' => 'cache',
|
|
||||||
'value' => 'i:1;',
|
|
||||||
))->values(array(
|
))->values(array(
|
||||||
'name' => 'cache_lifetime',
|
'name' => 'cache_lifetime',
|
||||||
'value' => 'i:0;',
|
'value' => 'i:0;',
|
||||||
|
@ -477,9 +475,6 @@ class Variable extends DrupalDumpBase {
|
||||||
))->values(array(
|
))->values(array(
|
||||||
'name' => 'image_toolkit',
|
'name' => 'image_toolkit',
|
||||||
'value' => 's:2:"gd";',
|
'value' => 's:2:"gd";',
|
||||||
))->values(array(
|
|
||||||
'name' => 'javascript_parsed',
|
|
||||||
'value' => 'a:0:{}',
|
|
||||||
))->values(array(
|
))->values(array(
|
||||||
'name' => 'locale_cache_strings',
|
'name' => 'locale_cache_strings',
|
||||||
'value' => 'i:1;',
|
'value' => 'i:1;',
|
||||||
|
@ -730,4 +725,4 @@ class Variable extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#c932701ffe15d70ac72d453e975fee38
|
#32b72a0543c243804368c7bc10b05be5
|
||||||
|
|
|
@ -96,6 +96,7 @@ class Vocabulary extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("vocabulary")->fields(array(
|
$this->database->insert("vocabulary")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -174,4 +175,4 @@ class Vocabulary extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#92bb32cf1586d6e70e769372e30aaba1
|
#94130b73f1ac1038218716a57d465163
|
||||||
|
|
|
@ -40,6 +40,7 @@ class VocabularyNodeTypes extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("vocabulary_node_types")->fields(array(
|
$this->database->insert("vocabulary_node_types")->fields(array(
|
||||||
'vid',
|
'vid',
|
||||||
|
@ -64,4 +65,4 @@ class VocabularyNodeTypes extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#b427f4114483acbc05cf2e6dff8bfe0f
|
#b62db0b4fcc3389a5da405b703632d5a
|
||||||
|
|
|
@ -88,6 +88,7 @@ class Watchdog extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("watchdog")->fields(array(
|
$this->database->insert("watchdog")->fields(array(
|
||||||
'wid',
|
'wid',
|
||||||
|
@ -106,4 +107,4 @@ class Watchdog extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#ba51a62a7ab597e9b3cbff8ada36b788
|
#9106430c43c9a1d732e1b44bce21781b
|
||||||
|
|
|
@ -78,6 +78,7 @@ class Accesslog extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("accesslog")->fields(array(
|
$this->database->insert("accesslog")->fields(array(
|
||||||
'aid',
|
'aid',
|
||||||
|
@ -124,4 +125,4 @@ class Accesslog extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#3977151b031051142a610811b1e41d20
|
#1aaa5fa899c08cfc6607be2b0599ef46
|
||||||
|
|
|
@ -55,6 +55,7 @@ class Actions extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("actions")->fields(array(
|
$this->database->insert("actions")->fields(array(
|
||||||
'aid',
|
'aid',
|
||||||
|
@ -139,4 +140,4 @@ class Actions extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#09fca66184126ebbc8455d96a30e1871
|
#28b8f51b5608625c77b3d08229fb6a73
|
||||||
|
|
|
@ -44,10 +44,11 @@ class AggregatorCategory extends DrupalDumpBase {
|
||||||
'block' => array(
|
'block' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '4',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_category")->fields(array(
|
$this->database->insert("aggregator_category")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -59,4 +60,4 @@ class AggregatorCategory extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#a246879883d964d75f79e4d130900477
|
#36a675168dc6acf7a70dcf73db0ef24f
|
||||||
|
|
|
@ -39,6 +39,7 @@ class AggregatorCategoryFeed extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_category_feed")->fields(array(
|
$this->database->insert("aggregator_category_feed")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -48,4 +49,4 @@ class AggregatorCategoryFeed extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#48941399e5752bb924657c87de88d95d
|
#b1438209e6c5437928ec638c06bea9f1
|
||||||
|
|
|
@ -39,6 +39,7 @@ class AggregatorCategoryItem extends DrupalDumpBase {
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_category_item")->fields(array(
|
$this->database->insert("aggregator_category_item")->fields(array(
|
||||||
'iid',
|
'iid',
|
||||||
|
@ -48,4 +49,4 @@ class AggregatorCategoryItem extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#57c5368d780a491fa355b704196b05e6
|
#18a56c59bc4bbcf06db0b68ba24b1c49
|
||||||
|
|
|
@ -95,10 +95,11 @@ class AggregatorFeed extends DrupalDumpBase {
|
||||||
'block' => array(
|
'block' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '4',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_feed")->fields(array(
|
$this->database->insert("aggregator_feed")->fields(array(
|
||||||
'fid',
|
'fid',
|
||||||
|
@ -119,4 +120,4 @@ class AggregatorFeed extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#db694861ff0144c032783423b1b2a095
|
#8e8447ae5f187d54c5849399ea7f0983
|
||||||
|
|
|
@ -69,6 +69,7 @@ class AggregatorItem extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("aggregator_item")->fields(array(
|
$this->database->insert("aggregator_item")->fields(array(
|
||||||
'iid',
|
'iid',
|
||||||
|
@ -84,4 +85,4 @@ class AggregatorItem extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#e92145ca6ce34fac4983db361aba0632
|
#45d66c3443a69e4c2180a0d653725d10
|
||||||
|
|
|
@ -50,6 +50,7 @@ class Authmap extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("authmap")->fields(array(
|
$this->database->insert("authmap")->fields(array(
|
||||||
'aid',
|
'aid',
|
||||||
|
@ -61,4 +62,4 @@ class Authmap extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#d3b53fbf5d22670b0038998db6d6d13e
|
#dbc0bc9089ef2058a02d42783ad948e2
|
||||||
|
|
|
@ -47,6 +47,7 @@ class Batch extends DrupalDumpBase {
|
||||||
'length' => 100,
|
'length' => 100,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("batch")->fields(array(
|
$this->database->insert("batch")->fields(array(
|
||||||
'bid',
|
'bid',
|
||||||
|
@ -58,4 +59,4 @@ class Batch extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#741ce54d4a3cd8d238e99e032264b2a4
|
#83d4e14a851195133d20f9f09a929bbd
|
||||||
|
|
|
@ -51,7 +51,7 @@ class Block extends DrupalDumpBase {
|
||||||
'status' => array(
|
'status' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '4',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
'weight' => array(
|
'weight' => array(
|
||||||
|
@ -69,13 +69,13 @@ class Block extends DrupalDumpBase {
|
||||||
'custom' => array(
|
'custom' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '4',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
'visibility' => array(
|
'visibility' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '4',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
'pages' => array(
|
'pages' => array(
|
||||||
|
@ -92,10 +92,11 @@ class Block extends DrupalDumpBase {
|
||||||
'cache' => array(
|
'cache' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '4',
|
'length' => '11',
|
||||||
'default' => '1',
|
'default' => '1',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("block")->fields(array(
|
$this->database->insert("block")->fields(array(
|
||||||
'bid',
|
'bid',
|
||||||
|
@ -687,4 +688,4 @@ class Block extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#50042dc7ad6299c9db8f127565cd40d7
|
#74042b5093754da56e33ac51a867f531
|
||||||
|
|
|
@ -48,6 +48,7 @@ class BlockCustom extends DrupalDumpBase {
|
||||||
'length' => '255',
|
'length' => '255',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("block_custom")->fields(array(
|
$this->database->insert("block_custom")->fields(array(
|
||||||
'bid',
|
'bid',
|
||||||
|
@ -59,4 +60,4 @@ class BlockCustom extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#d9db7a71db465804d2918e248ee6e194
|
#bcecada721307d09075575d51819ab41
|
||||||
|
|
|
@ -43,6 +43,7 @@ class BlockNodeType extends DrupalDumpBase {
|
||||||
'length' => '32',
|
'length' => '32',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("block_node_type")->fields(array(
|
$this->database->insert("block_node_type")->fields(array(
|
||||||
'module',
|
'module',
|
||||||
|
@ -53,4 +54,4 @@ class BlockNodeType extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#ce1a1b08704bfe8d6df7a78d95327ff5
|
#2e37638985a1b6e4e9734f60ecd857e5
|
||||||
|
|
|
@ -44,6 +44,7 @@ class BlockRole extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("block_role")->fields(array(
|
$this->database->insert("block_role")->fields(array(
|
||||||
'module',
|
'module',
|
||||||
|
@ -54,4 +55,4 @@ class BlockRole extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#3a1c4d0c41c1359cc23f4114311138d1
|
#3ac5281aec06873398b6cde3ca21d461
|
||||||
|
|
|
@ -38,6 +38,7 @@ class BlockedIps extends DrupalDumpBase {
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("blocked_ips")->fields(array(
|
$this->database->insert("blocked_ips")->fields(array(
|
||||||
'iid',
|
'iid',
|
||||||
|
@ -50,4 +51,4 @@ class BlockedIps extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#c9067ecae8a01a9ae2f2e260c258de23
|
#745ba653652c85af65809eb2dfb9a9e1
|
||||||
|
|
|
@ -47,6 +47,7 @@ class Book extends DrupalDumpBase {
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("book")->fields(array(
|
$this->database->insert("book")->fields(array(
|
||||||
'mlid',
|
'mlid',
|
||||||
|
@ -57,4 +58,4 @@ class Book extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#1beb26f2dacfd20f487eff98597bd70e
|
#6e968781e0397c89e6589d738c8fcc21
|
||||||
|
|
|
@ -51,10 +51,11 @@ class Cache extends DrupalDumpBase {
|
||||||
'serialized' => array(
|
'serialized' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '6',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache")->fields(array(
|
$this->database->insert("cache")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -67,4 +68,4 @@ class Cache extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#08f145d95d39e32a027c725dc5eec5c0
|
#c6b7a610594a8b4fd36d62d69154f2c5
|
||||||
|
|
|
@ -51,10 +51,11 @@ class CacheBlock extends DrupalDumpBase {
|
||||||
'serialized' => array(
|
'serialized' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '6',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_block")->fields(array(
|
$this->database->insert("cache_block")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -67,4 +68,4 @@ class CacheBlock extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#1ccef4e703d0eba13f5ea2bb76ccbec6
|
#d024638ddc87fafc2b9ff165072cf5b5
|
||||||
|
|
|
@ -51,10 +51,11 @@ class CacheBootstrap extends DrupalDumpBase {
|
||||||
'serialized' => array(
|
'serialized' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '6',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_bootstrap")->fields(array(
|
$this->database->insert("cache_bootstrap")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -67,4 +68,4 @@ class CacheBootstrap extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#a181fb630f0306dfbd12822f146587be
|
#bce318334cd67a6b2ae9acb5d6375e86
|
||||||
|
|
|
@ -51,10 +51,11 @@ class CacheField extends DrupalDumpBase {
|
||||||
'serialized' => array(
|
'serialized' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '6',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_field")->fields(array(
|
$this->database->insert("cache_field")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -67,4 +68,4 @@ class CacheField extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#8d11721a72fefb47ce12042d73bdfb61
|
#1d540d71bfaac8c084b0ba9f8ef2fdee
|
||||||
|
|
|
@ -51,10 +51,11 @@ class CacheFilter extends DrupalDumpBase {
|
||||||
'serialized' => array(
|
'serialized' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '6',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_filter")->fields(array(
|
$this->database->insert("cache_filter")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -67,4 +68,4 @@ class CacheFilter extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#fbe86d7806627ea6c2017f5ea88ba7b9
|
#be9484fabd472f2deb008a7f3face1e7
|
||||||
|
|
|
@ -51,10 +51,11 @@ class CacheForm extends DrupalDumpBase {
|
||||||
'serialized' => array(
|
'serialized' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '6',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_form")->fields(array(
|
$this->database->insert("cache_form")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -67,4 +68,4 @@ class CacheForm extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#01b2dd3cbb61fc97f2d1d9f24ffc58fa
|
#6367344b44c244f02dfb6a31981c3ff9
|
||||||
|
|
|
@ -51,10 +51,11 @@ class CacheImage extends DrupalDumpBase {
|
||||||
'serialized' => array(
|
'serialized' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'length' => '6',
|
'length' => '11',
|
||||||
'default' => '0',
|
'default' => '0',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
'mysql_character_set' => 'utf8',
|
||||||
));
|
));
|
||||||
$this->database->insert("cache_image")->fields(array(
|
$this->database->insert("cache_image")->fields(array(
|
||||||
'cid',
|
'cid',
|
||||||
|
@ -67,4 +68,4 @@ class CacheImage extends DrupalDumpBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#57ffeedbabeae7bfcd93e3c3b3d4eb37
|
#2e1bdb0edde7fb364ccf6968e45c0d14
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue