From 358a74975a6b7c37fa49f7c61c36fccfbc73e933 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 24 Sep 2015 14:01:08 +0200 Subject: [PATCH] E-Mail-Journal: Sequenznamen fixen --- SL/DB/MetaSetup/EmailJournal.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, -- 2.20.1