Added rake task for auto create of upcoming workgroup tasks (weekly tasks).

This commit is contained in:
Benjamin Meichsner 2009-08-11 17:17:18 +02:00
parent 7e2506baa2
commit d8cdbe4abb
6 changed files with 39 additions and 9 deletions

View 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