debian-mirror-gitlab/db/migrate/20170707184244_remove_wrong_versions_from_schema_versions.rb
2019-02-15 15:39:39 +05:30

10 lines
231 B
Ruby

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