mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-31 19:19:38 +02:00
8 lines
258 B
Ruby
8 lines
258 B
Ruby
|
class AddOwnerToOauthApplications < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :oauth_applications, :owner_id, :uuid
|
||
|
add_column :oauth_applications, :owner_type, :string
|
||
|
add_index :oauth_applications, [:owner_id, :owner_type]
|
||
|
end
|
||
|
end
|