Added rake task for auto create of upcoming workgroup tasks (weekly tasks).
This commit is contained in:
parent
7e2506baa2
commit
d8cdbe4abb
6 changed files with 39 additions and 9 deletions
9
db/migrate/20090811144901_add_weekly_to_tasks.rb
Normal file
9
db/migrate/20090811144901_add_weekly_to_tasks.rb
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
class AddWeeklyToTasks < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :tasks, :weekly, :boolean
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :tasks, :weekly
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue