diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-08-11 17:43:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-08-11 17:43:30 +0000 |
commit | f76ea7023f734bb24b443fa89c1ec5e9772aa2c0 (patch) | |
tree | 364797968c724e6ac7c7e4e3dca22f036d495e14 /modules/simpletest/simpletest.install | |
parent | 22da5c6978f805a73b75c8b2919430f35559a3ee (diff) | |
download | brdo-f76ea7023f734bb24b443fa89c1ec5e9772aa2c0.tar.gz brdo-f76ea7023f734bb24b443fa89c1ec5e9772aa2c0.tar.bz2 |
- Patch #293500 by Damien Tournoud: message column too short for PostgreSQL.
Diffstat (limited to 'modules/simpletest/simpletest.install')
-rw-r--r-- | modules/simpletest/simpletest.install | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/simpletest/simpletest.install b/modules/simpletest/simpletest.install index 6ede82d79..2efb13c40 100644 --- a/modules/simpletest/simpletest.install +++ b/modules/simpletest/simpletest.install @@ -166,10 +166,8 @@ function simpletest_schema() { 'description' => t('Message status. Core understands pass, fail, exception.'), ), 'message' => array( - 'type' => 'varchar', - 'length' => 255, + 'type' => 'text', 'not null' => TRUE, - 'default' => '', 'description' => t('The message itself.'), ), 'message_group' => array( @@ -256,4 +254,4 @@ function simpletest_update_7000() { } return $ret; -}
\ No newline at end of file +} |