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: 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