Added missing migration files.

This commit is contained in:
Robert Waltemath 2013-06-24 12:02:22 +02:00
parent c27127c745
commit 7942ccfae6
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,9 @@
class RemoveWeeklyFromTasks < ActiveRecord::Migration
def up
remove_column :tasks, :weekly
end
def down
add_column :tasks, :weekly, :boolean
end
end