tap/db/migrate/20150917165758_remove_provider_from_users.rb

6 lines
124 B
Ruby
Raw Normal View History

2015-09-18 11:20:57 +00:00
class RemoveProviderFromUsers < ActiveRecord::Migration
def change
remove_column :users, :provider, :string
end
end