gitlab-org--gitlab-foss/db/migrate/20160416190505_remove_note_is_award.rb

6 lines
119 B
Ruby
Raw Normal View History

2016-04-16 15:09:08 -04:00
class RemoveNoteIsAward < ActiveRecord::Migration
def change
remove_column :notes, :is_award, :boolean
end
end