diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-15 07:15:25 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-15 07:15:25 +0000 |
commit | ae0392b2eb956263c35fb04b695f4974dcca2787 (patch) | |
tree | feaee181acca6a6ad7b93e119e5348cc499314e9 /modules/comment/comment.schema | |
parent | 0d5e968823f3f0932e02cc637971c504ad872e8f (diff) | |
download | brdo-ae0392b2eb956263c35fb04b695f4974dcca2787.tar.gz brdo-ae0392b2eb956263c35fb04b695f4974dcca2787.tar.bz2 |
- Patch #147947 by hswong3i: some files shouldn't defined as text:big for Oracle compatibility.
Diffstat (limited to 'modules/comment/comment.schema')
-rw-r--r-- | modules/comment/comment.schema | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.schema b/modules/comment/comment.schema index 5620aa1e7..0d57892fd 100644 --- a/modules/comment/comment.schema +++ b/modules/comment/comment.schema @@ -16,7 +16,7 @@ function comment_schema() { 'status' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'), 'format' => array('type' => 'int', 'size' => 'small', 'not null' => TRUE, 'default' => 0), 'thread' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE), - 'users' => array('type' => 'text', 'not null' => FALSE, 'size' => 'big'), + 'users' => array('type' => 'text', 'not null' => FALSE, 'size' => 'medium'), 'name' => array('type' => 'varchar', 'length' => 60, 'not null' => FALSE), 'mail' => array('type' => 'varchar', 'length' => 64, 'not null' => FALSE), 'homepage' => array('type' => 'varchar', 'length' => 255, 'not null' => FALSE) |