Update to Drupal 8.0.3. For more information, see https://www.drupal.org/drupal-8.0.3-release-notes

This commit is contained in:
Pantheon Automation 2016-02-03 14:56:31 -08:00 committed by Greg Anderson
parent 10f9f7fbde
commit 9db4fae9a7
202 changed files with 3806 additions and 760 deletions

View file

@ -34054,7 +34054,7 @@ $connection->insert('vocabulary')
'hierarchy' => '1',
'multiple' => '1',
'required' => '0',
'tags' => '0',
'tags' => '1',
'module' => 'taxonomy',
'weight' => '5',
))
@ -34079,7 +34079,7 @@ $connection->insert('vocabulary')
'relations' => '1',
'hierarchy' => '0',
'multiple' => '0',
'required' => '0',
'required' => '1',
'tags' => '0',
'module' => 'taxonomy',
'weight' => '0',

View file

@ -4330,6 +4330,33 @@ $connection->schema()->createTable('field_data_field_file', array(
'mysql_character_set' => 'utf8',
));
$connection->insert('field_data_field_file')
->fields(array(
'entity_type',
'bundle',
'deleted',
'entity_id',
'revision_id',
'language',
'delta',
'field_file_fid',
'field_file_display',
'field_file_description',
))
->values(array(
'entity_type' => 'node',
'bundle' => 'test_content_type',
'deleted' => '0',
'entity_id' => '1',
'revision_id' => '1',
'language' => 'und',
'delta' => '0',
'field_file_fid' => '2',
'field_file_display' => '1',
'field_file_description' => 'file desc',
))
->execute();
$connection->schema()->createTable('field_data_field_float', array(
'fields' => array(
'entity_type' => array(
@ -6065,6 +6092,33 @@ $connection->schema()->createTable('field_revision_field_file', array(
'mysql_character_set' => 'utf8',
));
$connection->insert('field_revision_field_file')
->fields(array(
'entity_type',
'bundle',
'deleted',
'entity_id',
'revision_id',
'language',
'delta',
'field_file_fid',
'field_file_display',
'field_file_description',
))
->values(array(
'entity_type' => 'node',
'bundle' => 'test_content_type',
'deleted' => '0',
'entity_id' => '1',
'revision_id' => '1',
'language' => 'und',
'delta' => '0',
'field_file_fid' => '2',
'field_file_display' => '1',
'field_file_description' => 'file desc',
))
->execute();
$connection->schema()->createTable('field_revision_field_float', array(
'fields' => array(
'entity_type' => array(
@ -7337,6 +7391,13 @@ $connection->insert('file_usage')
'module' => 'file',
'type' => 'node',
'id' => '1',
'count' => '2',
))
->values(array(
'fid' => '2',
'module' => 'file',
'type' => 'node',
'id' => '1',
'count' => '1',
))
->execute();