BigW Consortium Gitlab

20151106000015_add_is_award_to_notes.rb 199 Bytes
# rubocop:disable all
class AddIsAwardToNotes < ActiveRecord::Migration
  def change
    add_column :notes, :is_award, :boolean, default: false, null: false
    add_index :notes, :is_award
  end
end