mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 02:47:27 +00:00
11 lines
294 B
Ruby
11 lines
294 B
Ruby
|
|
class CreateFolderApps < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
create_table :folder_apps, id: :uuid do |t|
|
||
|
|
t.references :folder, null: false, foreign_key: true, type: :uuid
|
||
|
|
t.references :app, null: false, foreign_key: true, type: :uuid
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|