about summary refs log tree commit diff
path: root/db/migrate/20160926213048_remove_owner_from_application.rb
blob: a42f53a29470e37d403877870f78e6f7e398ff88 (plain) (blame)
1
2
3
4
5
6
7
class RemoveOwnerFromApplication < ActiveRecord::Migration[5.0]
  def change
    remove_index :oauth_applications, [:owner_id, :owner_type]
    remove_column :oauth_applications, :owner_id, :integer, null: true
    remove_column :oauth_applications, :owner_type, :string, null: true
  end
end