diff options
author | ivan <ivan> | 2006-08-10 03:10:00 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-08-10 03:10:00 +0000 |
commit | 6495ab5fb29dcdb8233f004b5d60d3d97db058b9 (patch) | |
tree | 630b38405b5b6f7ecbfac97e5414c8ab17199324 /FS | |
parent | 64aeaf538530faec44db4818e8ecadfd0d1ee3f1 (diff) |
don't set the default to NULL the string! besides, that's already the default
value of any nullable column, which @date_type is...
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Schema.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 5dac26600..e7505465e 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -543,8 +543,8 @@ sub tables_hashref { 'columns' => [ 'batchnum', 'serial', '', '', '', '', 'status', 'char', 'NULL', 1, '', '', - 'download', @date_type, 'NULL', '', - 'upload', @date_type, 'NULL', '', + 'download', @date_type, '', '', + 'upload', @date_type, '', '', ], 'primary_key' => 'batchnum', 'unique' => [], |