blob: 7d5e6d07d0f21ae50a08ceb958b2f9ddbb1dc8c5 (
plain) (
blame)
1
2
3
4
5
6
7
|
class AddOwnerToApplication < ActiveRecord::Migration
def change
add_column :oauth_applications, :owner_id, :integer, null: true
add_column :oauth_applications, :owner_type, :string, null: true
add_index :oauth_applications, [:owner_id, :owner_type]
end
end
|