24d23 < * - locale 780,807d778 < ->values(array( < 'bid' => '31', < 'module' => 'locale', < 'delta' => 'language', < 'theme' => 'bartik', < 'status' => '0', < 'weight' => '0', < 'region' => '-1', < 'custom' => '0', < 'visibility' => '0', < 'pages' => '', < 'title' => '', < 'cache' => '-1', < )) < ->values(array( < 'bid' => '32', < 'module' => 'locale', < 'delta' => 'language', < 'theme' => 'seven', < 'status' => '0', < 'weight' => '0', < 'region' => '-1', < 'custom' => '0', < 'visibility' => '0', < 'pages' => '', < 'title' => '', < 'cache' => '-1', < )) 18348,18532d18318 < db_create_table('languages', array( < 'fields' => array( < 'language' => array( < 'type' => 'varchar', < 'length' => 12, < 'not null' => TRUE, < 'default' => '', < ), < 'name' => array( < 'type' => 'varchar', < 'length' => 64, < 'not null' => TRUE, < 'default' => '', < ), < 'direction' => array( < 'type' => 'int', < 'not null' => TRUE, < 'default' => 0, < ), < 'enabled' => array( < 'type' => 'int', < 'not null' => TRUE, < 'default' => 0, < ), < 'domain' => array( < 'type' => 'varchar', < 'length' => 128, < 'not null' => TRUE, < 'default' => '', < ), < 'prefix' => array( < 'type' => 'varchar', < 'length' => 128, < 'not null' => TRUE, < 'default' => '', < ), < 'weight' => array( < 'type' => 'int', < 'not null' => TRUE, < 'default' => 0, < ), < ), < 'primary key' => array( < 'language', < ), < 'indexes' => array( < 'list' => array( < 'weight', < 'name', < ), < ), < 'module' => 'locale', < 'name' => 'languages', < )); < db_insert('languages')->fields(array( < 'language', < 'name', < 'direction', < 'enabled', < 'domain', < 'prefix', < 'weight', < )) < ->values(array( < 'language' => 'ca', < 'name' => 'Catalan', < 'direction' => '0', < 'enabled' => '1', < 'domain' => '', < 'prefix' => 'ca', < 'weight' => '0', < )) < ->values(array( < 'language' => 'en', < 'name' => 'English', < 'direction' => '0', < 'enabled' => '1', < 'domain' => '', < 'prefix' => '', < 'weight' => '0', < )) < ->execute(); < < db_create_table('locales_source', array( < 'fields' => array( < 'lid' => array( < 'type' => 'serial', < 'not null' => TRUE, < ), < 'location' => array( < 'type' => 'text', < 'not null' => FALSE, < 'size' => 'big', < ), < 'source' => array( < 'type' => 'text', < 'mysql_type' => 'blob', < 'not null' => TRUE, < ), < 'context' => array( < 'type' => 'varchar', < 'length' => 255, < 'not null' => TRUE, < 'default' => '', < ), < 'version' => array( < 'type' => 'varchar', < 'length' => 20, < 'not null' => TRUE, < 'default' => 'none', < ), < ), < 'primary key' => array( < 'lid', < ), < 'indexes' => array( < 'source_context' => array( < array( < 'source', < 30, < ), < 'context', < ), < ), < 'module' => 'locale', < 'name' => 'locales_source', < )); < < db_create_table('locales_target', array( < 'fields' => array( < 'lid' => array( < 'type' => 'int', < 'not null' => TRUE, < 'default' => 0, < ), < 'translation' => array( < 'type' => 'text', < 'mysql_type' => 'blob', < 'not null' => TRUE, < ), < 'language' => array( < 'type' => 'varchar', < 'length' => 12, < 'not null' => TRUE, < 'default' => '', < ), < 'plid' => array( < 'type' => 'int', < 'not null' => TRUE, < 'default' => 0, < ), < 'plural' => array( < 'type' => 'int', < 'not null' => TRUE, < 'default' => 0, < ), < ), < 'primary key' => array( < 'language', < 'lid', < 'plural', < ), < 'foreign keys' => array( < 'locales_source' => array( < 'table' => 'locales_source', < 'columns' => array( < 'lid' => 'lid', < ), < ), < ), < 'indexes' => array( < 'lid' => array( < 'lid', < ), < 'plid' => array( < 'plid', < ), < 'plural' => array( < 'plural', < ), < ), < 'module' => 'locale', < 'name' => 'locales_target', < )); < 40328c40114 < 'status' => '1', --- > 'status' => '0', 40330c40116 < 'schema_version' => '8001', --- > 'schema_version' => '-1',