akkounts/db/migrate/20231024104909_add_web_app_id_to_remote_storage_authorizations.rb
2023-10-24 17:29:24 +02:00

8 lines
220 B
Ruby

class AddWebAppIdToRemoteStorageAuthorizations < ActiveRecord::Migration[7.0]
def change
add_reference :remote_storage_authorizations, :web_app, foreign_key: {
to_table: :app_catalog_web_apps
}
end
end