about summary refs log tree commit diff
path: root/db/migrate/20160920003904_remove_verify_token_from_accounts.rb
blob: ab6a6c84cb92e3c4d0bfc3b213de69f32c630d84 (plain) (blame)
1
2
3
4
5
class RemoveVerifyTokenFromAccounts < ActiveRecord::Migration[5.0]
  def change
    remove_column :accounts, :verify_token, :string, null: false, default: ''
  end
end