From 62b05eb6a3b40629fc191ec7f0ffa76266941839 Mon Sep 17 00:00:00 2001
From: Angie Byron <webchick@24967.no-reply.drupal.org>
Date: Wed, 4 Feb 2009 20:27:58 +0000
Subject: [PATCH] #361683 follow-up by bjaspan: Fix column type on etid to fix
 broken installation on non-MySQL dbs.

---
 .../field/modules/field_sql_storage/field_sql_storage.module    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 55c6a64d465d..d7270ff85ef9 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',
-- 
GitLab