From: Moritz Bunkus Date: Thu, 24 Sep 2015 12:01:08 +0000 (+0200) Subject: E-Mail-Journal: Sequenznamen fixen X-Git-Tag: release-3.4.1~707 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=358a74975a6b7c37fa49f7c61c36fccfbc73e933;p=kivitendo-erp.git E-Mail-Journal: Sequenznamen fixen --- diff --git a/SL/DB/MetaSetup/EmailJournal.pm b/SL/DB/MetaSetup/EmailJournal.pm index 92f89be2d..d6dceb7ac 100644 --- a/SL/DB/MetaSetup/EmailJournal.pm +++ b/SL/DB/MetaSetup/EmailJournal.pm @@ -13,7 +13,7 @@ __PACKAGE__->meta->columns( extended_status => { type => 'text', not_null => 1 }, from => { type => 'text', not_null => 1 }, headers => { type => 'text', not_null => 1 }, - id => { type => 'integer', not_null => 1, sequence => 'email_journal_id_seq1' }, + id => { type => 'serial', not_null => 1 }, itime => { type => 'timestamp', default => 'now()', not_null => 1 }, mtime => { type => 'timestamp', default => 'now()', not_null => 1 }, recipients => { type => 'text', not_null => 1 },