mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
9 lines
161 B
Ruby
9 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
|