Skip to content
Snippets Groups Projects
Commit 62b05eb6 authored by Angie Byron's avatar Angie Byron
Browse files

#361683 follow-up by bjaspan: Fix column type on etid to fix broken installation on non-MySQL dbs.

parent 3d41ec90
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -91,7 +91,7 @@ function _field_sql_storage_schema($field) {
'description' => 'Data storage for field ' . $field['field_name'],
'fields' => array(
'etid' => array(
'type' => 'serial',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'The entity type id this data is attached to',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment