blob: a24743999fe0facb7ce4cb7690d35829f0afa7a1 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddNewsCommentsCount < ActiveRecord::Migration
def self.up
add_column :news, :comments_count, :integer, :default => 0, :null => false
end
def self.down
remove_column :news, :comments_count
end
end
|