ToolJet/db/migrate/20210401061042_create_apps.rb
2021-04-01 16:29:27 +05:30

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