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