X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FEmailJournalAttachment.pm;h=591e7992e2c47c6bbdae2f259264ff48bdb5086e;hb=HEAD;hp=e804477cb452520ddceb3f9252151df5c84eab3f;hpb=24ab7ec0bfb052edce7a3c7a6e37c151f9cd6a04;p=kivitendo-erp.git 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 },