diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-05-12 08:55:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-05-12 08:55:47 +0000 |
commit | 1c1d12b8741a1aa31d4b41f8655dbfa5fd861f97 (patch) | |
tree | 88710638ee524d183bd9a4d99fd0828ea3ef4dc7 | |
parent | acf9368d9873602ea4275793123a27f77c4d3433 (diff) | |
download | brdo-1c1d12b8741a1aa31d4b41f8655dbfa5fd861f97.tar.gz brdo-1c1d12b8741a1aa31d4b41f8655dbfa5fd861f97.tar.bz2 |
- Patch #795198 by heyrocker: numeric List fields should not be unsigned.
-rw-r--r-- | modules/field/modules/list/list.module | 2 |
1 files changed, 0 insertions, 2 deletions
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, ), ); |