10 lines
219 B
Ruby
10 lines
219 B
Ruby
|
class RemoveProjectsProjectsCount < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
remove_column :projects, :projects_count
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
add_column :projects, :projects_count, :integer, :default => 0
|
||
|
end
|
||
|
end
|