Associate RS authorizations with web apps

This commit is contained in:
Râu Cao
2023-10-24 13:08:06 +02:00
parent 261a782963
commit fcea11f0e5
6 changed files with 36 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
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