tap/db/migrate/20150917165758_remove_provider_from_users.rb
2015-09-18 13:20:57 +02:00

6 lines
124 B
Ruby

class RemoveProviderFromUsers < ActiveRecord::Migration
def change
remove_column :users, :provider, :string
end
end