Gab-Social/db/migrate/20160920003904_remove_verify_token_from_accounts.rb

6 lines
168 B
Ruby
Raw Normal View History

2019-07-02 07:10:25 +00:00
class RemoveVerifyTokenFromAccounts < ActiveRecord::Migration[5.0]
def change
remove_column :accounts, :verify_token, :string, null: false, default: ''
end
end