Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20141217125223_add_owner_to_application.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d5e6d07d0f21ae50a08ceb958b2f9ddbb1dc8c5 (plain)
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