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

20170807160457_remove_locked_at_column_from_merge_requests.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3949cf8261a61b62451f0b6b47657861467d12bd (plain)
1
2
3
4
5
6
7
8
9
10
11
class RemoveLockedAtColumnFromMergeRequests < ActiveRecord::Migration
  DOWNTIME = false

  def up
    remove_column :merge_requests, :locked_at
  end

  def down
    # nothing to do to recover the values
  end
end