debian-mirror-gitlab/db/migrate/20170707184244_remove_wrong_versions_from_schema_versions.rb
2017-09-10 17:25:29 +05:30

11 lines
226 B
Ruby

class RemoveWrongVersionsFromSchemaVersions < ActiveRecord::Migration
DOWNTIME = false
def up
execute("DELETE FROM schema_migrations WHERE version IN ('20170723183807', '20170724184243')")
end
def down
end
end