Sha256: 6ece921d2bb5083658580838dacea929e9ce39edd2f9b91d6913429b2797da40
Contents?: true
Size: 328 Bytes
Versions: 21
Compression:
Stored size: 328 Bytes
Contents
# frozen_string_literal: true class AddOwnerToApplication < ActiveRecord::Migration<%= migration_version %> def change add_column :oauth_applications, :owner_id, :bigint, null: true add_column :oauth_applications, :owner_type, :string, null: true add_index :oauth_applications, [:owner_id, :owner_type] end end
Version data entries
21 entries across 21 versions & 1 rubygems