Commit 944b201882046caa05d9caac4ba8aae623fab2a4

Authored by Evandro Jr
1 parent f48f48a3

Added migrate

db/migrate/20140505190748_add_setting_to_comments.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class AddSettingToComments < ActiveRecord::Migration
  2 + def self.up
  3 + add_column :comments, :setting, :text
  4 + end
  5 +
  6 + def self.down
  7 + remove_column :comments, :setting
  8 + end
  9 +end
... ...