diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-04 20:27:58 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-04 20:27:58 +0000 |
commit | 62b05eb6a3b40629fc191ec7f0ffa76266941839 (patch) | |
tree | 817fa1bf5a5170593b5b58c75b1413e2eb93a631 /modules | |
parent | 3d41ec909fde305ecac0a76d6d134e0dd3551254 (diff) | |
download | brdo-62b05eb6a3b40629fc191ec7f0ffa76266941839.tar.gz brdo-62b05eb6a3b40629fc191ec7f0ffa76266941839.tar.bz2 |
#361683 follow-up by bjaspan: Fix column type on etid to fix broken installation on non-MySQL dbs.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/field/modules/field_sql_storage/field_sql_storage.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/modules/field_sql_storage/field_sql_storage.module b/modules/field/modules/field_sql_storage/field_sql_storage.module index 55c6a64d4..d7270ff85 100644 --- a/modules/field/modules/field_sql_storage/field_sql_storage.module +++ b/modules/field/modules/field_sql_storage/field_sql_storage.module @@ -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',
|