From 1c1d12b8741a1aa31d4b41f8655dbfa5fd861f97 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 12 May 2010 08:55:47 +0000 Subject: - Patch #795198 by heyrocker: numeric List fields should not be unsigned. --- modules/field/modules/list/list.module | 2 -- 1 file changed, 2 deletions(-) (limited to 'modules') diff --git a/modules/field/modules/list/list.module b/modules/field/modules/list/list.module index 8ca12025b..cf2893712 100644 --- a/modules/field/modules/list/list.module +++ b/modules/field/modules/list/list.module @@ -73,7 +73,6 @@ function list_field_schema($field) { $columns = array( 'value' => array( 'type' => 'float', - 'unsigned' => TRUE, 'not null' => FALSE, ), ); @@ -82,7 +81,6 @@ function list_field_schema($field) { $columns = array( 'value' => array( 'type' => 'int', - 'unsigned' => TRUE, 'not null' => FALSE, ), ); -- cgit v1.2.3