blob: 92ac7c4a56d11164b86c271284eb975f30845e8e (
plain)
1
2
3
4
5
6
7
8
9
10
|
class AddCommentLocale < ActiveRecord::Migration
def self.up
add_column :comments, :locale, :text, :null => false, :default => ""
end
def self.down
remove_column :comments, :locale
end
end
|