10 lines
172 B
Ruby
10 lines
172 B
Ruby
|
class RemoveAssignedFromTasks < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :tasks, :assigned
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
add_column :tasks, :assigned, :boolean
|
||
|
end
|
||
|
end
|