20160920003904_remove_verify_token_from_accounts.rb 199 B

1234567
  1. # frozen_string_literal: true
  2. class RemoveVerifyTokenFromAccounts < ActiveRecord::Migration[5.0]
  3. def change
  4. remove_column :accounts, :verify_token, :string, null: false, default: ''
  5. end
  6. end