mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-01 02:17:20 +00:00
10 lines
201 B
Ruby
10 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
|