summaryrefslogtreecommitdiff
path: root/db/migrate/20160416190505_remove_note_is_award.rb
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