gitlab-org--gitlab-foss/db/migrate/20170707184244_remove_wrong...

11 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