BigW Consortium Gitlab

20141217125223_add_owner_to_application.rb 295 Bytes
Newer Older
1
# rubocop:disable all
Valery Sizov committed
2 3 4 5 6 7 8
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