diff options
author | ivan <ivan> | 2009-12-06 19:19:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-12-06 19:19:19 +0000 |
commit | 552850de6b64247b954449efbaeac7da89b2a938 (patch) | |
tree | 68f903e577726cef00d205607010ce0702af9356 | |
parent | ecf88c5c5379732a2c147c3755741014d4380ae0 (diff) |
more reasonable sizes for filename, mime type and title, RT#6823
-rw-r--r-- | FS/FS/Schema.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 1f595a846..eaa5a2ec6 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -378,9 +378,9 @@ sub tables_hashref { 'custnum', 'int', '', '', '', '', '_date', @date_type, '', '', 'otaker', 'varchar', '', 32, '', '', - 'filename', 'varchar', '', 32, '', '', - 'mime_type', 'varchar', '', 32, '', '', - 'title', 'varchar', 'NULL', 32, '', '', + 'filename', 'varchar', '', 255, '', '', + 'mime_type', 'varchar', '', $char_d, '', '', + 'title', 'varchar', 'NULL', $char_d, '', '', 'body', 'blob', 'NULL', '', '', '', 'disabled', 'varchar', 'NULL', '10', '', ], |