X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/24ab7ec0bfb052edce7a3c7a6e37c151f9cd6a04..46f9d91b44c432aa017f44b6b2f53114e190428e:/SL/DB/MetaSetup/EmailJournalAttachment.pm diff --git a/SL/DB/MetaSetup/EmailJournalAttachment.pm b/SL/DB/MetaSetup/EmailJournalAttachment.pm index e804477cb..591e7992e 100644 --- a/SL/DB/MetaSetup/EmailJournalAttachment.pm +++ b/SL/DB/MetaSetup/EmailJournalAttachment.pm @@ -11,6 +11,7 @@ __PACKAGE__->meta->table('email_journal_attachments'); __PACKAGE__->meta->columns( content => { type => 'bytea', not_null => 1 }, email_journal_id => { type => 'integer', not_null => 1 }, + file_id => { type => 'integer', default => '0', not_null => 1 }, id => { type => 'serial', not_null => 1 }, itime => { type => 'timestamp', default => 'now()', not_null => 1 }, mime_type => { type => 'text', not_null => 1 },