mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
10 lines
245 B
Ruby
10 lines
245 B
Ruby
class CreateFolders < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :folders, id: :uuid do |t|
|
|
t.string :name
|
|
t.references :organization, null: false, foreign_key: true, type: :uuid
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|