Skip to content

Commit

Permalink
permission-engine/src/database/dbml/tables.dbml: add space_equipment …
Browse files Browse the repository at this point in the history
…table
  • Loading branch information
fatihohn committed Oct 15, 2024
1 parent a04e6bf commit 3b05cc1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions permission-engine/src/database/dbml/tables.dbml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@ Table topic {
updated_at timestamptz [default: `CURRENT_TIMESTAMP`]
}

Table space_equipment {
id uuid [primary key]
space_id uuid
name varchar [not null]
type varchar
details text
is_active bool [not null, default: true]
created_at timestamptz [default: `CURRENT_TIMESTAMP`]
updated_at timestamptz [default: `CURRENT_TIMESTAMP`]
}
Ref: space_event.space_id > space.id

Table space_event {
id uuid [primary key]
organizer_id uuid [not null]
Expand Down

0 comments on commit 3b05cc1

Please sign in to comment.