diff options
author | ivan <ivan> | 2009-10-21 07:09:21 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-10-21 07:09:21 +0000 |
commit | 7d0e23b6ac9c0de45bcc65f13cae6f928dd790ef (patch) | |
tree | 3a79fe330f546363cb5d220698f2284b6a0ebe85 | |
parent | be6ad6b6c382f22a89b2b6694b08a78337b3160e (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 6f53b2aa7..6a8efcdc5 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -1641,7 +1641,7 @@ sub tables_hashref { 'queue' => { 'columns' => [ 'jobnum', 'serial', '', '', '', '', - 'job', 'text', '', '', '', '', + 'job', 'varchar', '', 512, '', '', '_date', 'int', '', '', '', '', 'status', 'varchar', '', $char_d, '', '', 'statustext', 'text', 'NULL', '', '', '', |