Commit 54d9eb375a89a6bfedfac838485bb1ce1fd4238e

Authored by Leandro Santos
1 parent 89c5fafb

Add settings field for comments. Now it will be possible to use acts_as_having_fields for comments

db/migrate/20150408231524_add_settings_to_comments.rb 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +class AddSettingsToComments < ActiveRecord::Migration
  2 + def change
  3 + add_column :comments, :settings, :text
  4 + end
  5 +end
... ...