diff options
author | ivan <ivan> | 2009-10-21 07:09:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-10-21 07:09:20 +0000 |
commit | f7cbd3b930667f32e8b7413a22b1cf8b2d7cbd81 (patch) | |
tree | 5cf09f97ea27982d504a2e8a427b7e86e9be8a61 | |
parent | 27f2fe97eb1b189b064f59c77eb66460537c75a5 (diff) |
MySQL doesn't like indexing a text field
-rw-r--r-- | FS/FS/Schema.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 946cf7f6d..ba8dcdeae 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -1643,7 +1643,7 @@ sub tables_hashref { 'queue' => { 'columns' => [ 'jobnum', 'serial', '', '', '', '', - 'job', 'text', '', '', '', '', + 'job', 'varchar', '', 512, '', '', '_date', 'int', '', '', '', '', 'status', 'varchar', '', $char_d, '', '', 'statustext', 'text', 'NULL', '', '', '', |