Added missing migration files.
This commit is contained in:
parent
c27127c745
commit
7942ccfae6
2 changed files with 28 additions and 0 deletions
9
db/migrate/20130624084223_remove_weekly_from_tasks.rb
Normal file
9
db/migrate/20130624084223_remove_weekly_from_tasks.rb
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue