mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 10:57:20 +00:00
12 lines
270 B
Ruby
12 lines
270 B
Ruby
|
|
class CreateAppVersions < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
create_table :app_versions, id: :uuid do |t|
|
||
|
|
t.references :app, null: false, foreign_key: true, type: :uuid
|
||
|
|
t.string :name
|
||
|
|
t.json :definition
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|