about summary refs log tree commit diff
path: root/db/migrate/20170427011934_re_add_owner_to_application.rb
blob: a41d71d2a134cf714ed64a49ae0661d846e955e4 (plain) (blame)
1
2
3
4
5
6
7
8
class ReAddOwnerToApplication < ActiveRecord::Migration[5.0]
  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]
    add_foreign_key :oauth_applications, :users, column: :owner_id, on_delete: :cascade
  end
end