summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormark <mark>2009-11-23 22:09:46 +0000
committermark <mark>2009-11-23 22:09:46 +0000
commit9e23adac6e443f9f6bb4d00149143bc3a21998b3 (patch)
treec23d9fd3ede5280a43e42044c6ca6c85c30c37eb
parent8fccb0da9d9b2213cc1409d7d7bf94ecc68a66f6 (diff)
Add title field to cust_attachment
-rw-r--r--FS/FS/Schema.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 553ddc2a8..cf6844e18 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -380,8 +380,9 @@ sub tables_hashref {
'otaker', 'varchar', '', 32, '', '',
'filename', 'varchar', '', 32, '', '',
'mime_type', 'varchar', '', 32, '', '',
+ 'title', 'varchar', 'NULL', 32, '', '',
'body', 'blob', 'NULL', '', '', '',
- 'disabled', @date_type, '', '',
+ 'disabled', 'varchar', 'NULL', '10', '',
],
'primary_key' => 'attachnum',
'unique' => [],