X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/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 },