ToolJet/db/migrate/20210331162009_create_organizations.rb
2021-03-31 21:51:10 +05:30

9 lines
201 B
Ruby

class CreateOrganizations < ActiveRecord::Migration[6.1]
def change
create_table :organizations, id: :uuid do |t|
t.string :name
t.string :domain
t.timestamps
end
end
end