Sha256: 166abe97bc5ae4e00dffc04afa190e6168656d20d3d8b4701db4efb8af7ee8b2
Contents?: true
Size: 310 Bytes
Versions: 9
Compression:
Stored size: 310 Bytes
Contents
# frozen_string_literal: true class AddOwnerToApplication < ActiveRecord::Migration[4.2] 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
Version data entries
9 entries across 9 versions & 3 rubygems