Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170707184244_remove_wrong_versions_from_schema_versions.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f99206c7f7831f6bef79851fd4cbd9af62f6b832 (plain)
1
2
3
4
5
6
7
8
9
10
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