Add web app model, service to fetch metadata

This commit is contained in:
Râu Cao
2023-10-19 16:18:13 +02:00
parent e1b7e1b2ef
commit e56c9bd0d5
8 changed files with 81 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
class CreateAppCatalogWebApps < ActiveRecord::Migration[7.0]
def change
create_table :app_catalog_web_apps do |t|
t.string :url
t.string :name
t.text :metadata
t.timestamps
end
end
end