drop unused add_db_logger call and db table

Fixes: https://pagure.io/koji/issue/469
This commit is contained in:
Tomas Kopecek 2017-07-06 13:36:38 +02:00 committed by Mike McLean
parent 3fd55d1454
commit d17157cf33
4 changed files with 9 additions and 23 deletions

View file

@ -0,0 +1,9 @@
-- upgrade script to migrate the Koji database schema
-- from version 1.13 to 1.14
BEGIN;
-- drop unused log_messages table
DROP TABLE log_messages;
COMMIT;