about summary refs log blame commit diff
path: root/db/migrate/20160920003904_remove_verify_token_from_accounts.rb
blob: ab6a6c84cb92e3c4d0bfc3b213de69f32c630d84 (plain) (tree)
1
2
3
4
5



                                                                             
class RemoveVerifyTokenFromAccounts < ActiveRecord::Migration[5.0]
  def change
    remove_column :accounts, :verify_token, :string, null: false, default: ''
  end
end