Consider task duration in ordergroup stats.
* Also added duration to task template in workgroup task_duration.
This commit is contained in:
parent
be85296ddb
commit
c2496aa4fd
19 changed files with 80 additions and 32 deletions
|
|
@ -0,0 +1,9 @@
|
|||
class AddTaskDurationToWorkgroups < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :groups, :task_duration, :integer, :default => 1
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :groups, :task_duration
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue