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: e5a669ab4d8b64be6e632a9d7b84b9563059d521 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable all
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