Notes posted by meritize
RSS feed
meritize -
July 20, 2014
0 thanks
change_column did the trick for me
Use change_column, and make sure to specify the datatype:
class ChangeUsers < ActiveRecord::Migration def up change_column :users, :is_vote_reminder, :boolean, :default => true end end