20140505190748_add_setting_to_comments.rb 180 Bytes
class AddSettingToComments < ActiveRecord::Migration
  def self.up
    add_column :comments, :setting, :text
  end

  def self.down
    remove_column :comments, :setting
  end
end