gitlab-org--gitlab-foss/db/migrate/20160416190505_remove_note_is_award.rb
2016-05-06 10:47:11 +02:00

5 lines
119 B
Ruby

class RemoveNoteIsAward < ActiveRecord::Migration
def change
remove_column :notes, :is_award, :boolean
end
end