/db/migrate/20170707184244_remove_wrong_versions_from_schema_versions.rb
https://gitlab.com/visay/gitlab-ce · Ruby · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · ae97796271958c88d2449b3b7e936336 MD5 · raw file
- class RemoveWrongVersionsFromSchemaVersions < ActiveRecord::Migration
- DOWNTIME = false
- def up
- execute("DELETE FROM schema_migrations WHERE version IN ('20170723183807', '20170724184243')")
- end
- def down
- end
- end