20140505190748_add_setting_to_comments.rb 180 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddSettingToComments < ActiveRecord::Migration def self.up add_column :comments, :setting, :text end def self.down remove_column :comments, :setting end end