wrap old 1.2-1.3 upgrade script in begin..commit

This commit is contained in:
Mike McLean 2011-05-17 14:59:52 -04:00
parent bee3bd6936
commit eb9e577e9d

View file

@ -1,3 +1,7 @@
-- upgrade script to migrate the Koji database schema
-- from version 1.2 to 1.3
BEGIN;
-- external yum repos
create table external_repo (
@ -54,3 +58,5 @@ GRANT SELECT ON external_repo, external_repo_config, tag_external_repos TO PUBLI
-- DROP TABLE rpmdeps;
-- DROP TABLE changelogs;
-- DROP TABLE archivefiles;
COMMIT;