5 lines
119 B
Ruby
5 lines
119 B
Ruby
class RemoveNoteIsAward < ActiveRecord::Migration
|
|
def change
|
|
remove_column :notes, :is_award, :boolean
|
|
end
|
|
end
|