Files
akkounts/db/migrate/20231019125135_create_app_catalog_web_apps.rb
2023-10-24 17:29:23 +02:00

12 lines
224 B
Ruby

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