ToolJet/db/migrate/20210401061042_create_apps.rb

10 lines
161 B
Ruby
Raw Normal View History

2021-04-01 10:59:27 +00:00
class CreateApps < ActiveRecord::Migration[6.1]
def change
create_table :apps, id: :uuid do |t|
t.string :name
t.timestamps
end
end
end