2012-01-26 22:33:18 +00:00
|
|
|
class AddProjectsCountToGroups < ActiveRecord::Migration
|
|
|
|
def self.up
|
2014-01-21 04:51:49 +00:00
|
|
|
add_column :groups, :own_projects_count, :integer, default: 0, null: false
|
2012-01-26 22:33:18 +00:00
|
|
|
|
|
|
|
Group.reset_column_information
|
|
|
|
Group.all.each do |group|
|
|
|
|
Group.reset_counters(group.id, :own_projects)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
2012-01-27 14:38:33 +00:00
|
|
|
remove_column :groups, :own_projects_count
|
2012-01-26 22:33:18 +00:00
|
|
|
end
|
|
|
|
end
|