mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-01 10:27:30 +00:00
10 lines
161 B
Ruby
10 lines
161 B
Ruby
|
|
class CreateApps < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
create_table :apps, id: :uuid do |t|
|
||
|
|
t.string :name
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|