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

20160416190505_remove_note_is_award.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd24917feb9fd57ec10e24863eabcfd350893cdb (plain)
1
2
3
4
5
6
# rubocop:disable all
class RemoveNoteIsAward < ActiveRecord::Migration
  def change
    remove_column :notes, :is_award, :boolean
  end
end