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
|