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: da16372a297f6b9bc6e1323cf7ad7128c03bc052 (plain)
1
2
3
4
5
class RemoveNoteIsAward < ActiveRecord::Migration
  def change
    remove_column :notes, :is_award, :boolean
  end
end