mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-01 02:17:20 +00:00
12 lines
336 B
Ruby
12 lines
336 B
Ruby
|
|
class CreateOrganizationUsers < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
create_table :organization_users, id: :uuid do |t|
|
||
|
|
t.references :organization, null: false, foreign_key: true, type: :uuid
|
||
|
|
t.references :user, null: false, foreign_key: true, type: :uuid
|
||
|
|
t.string :role
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|