Skip to content

Commit

Permalink
Add rent schema
Browse files Browse the repository at this point in the history
  • Loading branch information
boozec committed Jun 28, 2024
1 parent ca55a2b commit 757d9d4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/architecture/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,19 @@ Le tabelle presenti nel database sono le seguenti:
user_id | bigint | | |
```

- `rents`

```
Column | Type | Collation | Nullable | Default
------------+--------------------------+-----------+----------+-----------------------------------
id | bigint | | not null | nextval('rents_id_seq'::regclass)
created_at | timestamp with time zone | | |
name | text | | |
latitude | numeric | | |
longitude | numeric | | |
endpoint | text | | |
```

- `users`

```
Expand Down

0 comments on commit 757d9d4

Please sign in to comment.