summaryrefslogtreecommitdiff
path: root/db/migrate/20170707184244_remove_wrong_versions_from_schema_versions.rb
blob: 38536a8b06a23224d1f18f5f2357db193a1d895d (plain)
1
2
3
4
5
6
7
8
9
10
class RemoveWrongVersionsFromSchemaVersions < ActiveRecord::Migration
  DOWNTIME = false

  def up
    execute("DELETE FROM schema_migrations WHERE version IN ('20170723183807', '20170724184243')")
  end

  def down
  end
end