summaryrefslogtreecommitdiff
path: root/modules/field/field.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-06-25 17:47:22 +0000
committerDries Buytaert <dries@buytaert.net>2010-06-25 17:47:22 +0000
commit7e52847ae90984d482ad7af3372a46c0d1435014 (patch)
tree29f248d79721fb0509a984348a13cddf92b1703b /modules/field/field.install
parentf56b384be0b3e7b56096f3036a3c9d7b731d2862 (diff)
downloadbrdo-7e52847ae90984d482ad7af3372a46c0d1435014.tar.gz
brdo-7e52847ae90984d482ad7af3372a46c0d1435014.tar.bz2
- Patch #690746 by jbrown, Ognyan Kulev, Crell, MichaelCole, Damien Tournoud: text column type doesn't reliably hold serialized variables.
Diffstat (limited to 'modules/field/field.install')
-rw-r--r--modules/field/field.install8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/field/field.install b/modules/field/field.install
index 3d23d2b6a..8a0c5ba4e 100644
--- a/modules/field/field.install
+++ b/modules/field/field.install
@@ -72,8 +72,8 @@ function field_schema() {
'description' => '@TODO',
),
'data' => array(
- 'type' => 'text',
- 'size' => 'medium',
+ 'type' => 'blob',
+ 'size' => 'big',
'not null' => TRUE,
'serialize' => TRUE,
'description' => 'Serialized data containing the field properties that do not warrant a dedicated column.',
@@ -143,8 +143,8 @@ function field_schema() {
'default' => ''
),
'data' => array(
- 'type' => 'text',
- 'size' => 'medium',
+ 'type' => 'blob',
+ 'size' => 'big',
'not null' => TRUE,
'serialize' => TRUE,
),