journalduhacker/db/migrate/20131228175805_add_comment_by_email_flag.rb

9 lines
161 B
Ruby

class AddCommentByEmailFlag < ActiveRecord::Migration
def up
add_column :comments, :is_from_email, :boolean, :default => false
end
def down
end
end