Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
fix: Add project_chat table
Browse files Browse the repository at this point in the history
  • Loading branch information
rsavoye committed Dec 26, 2023
1 parent 0383870 commit fc0b1cf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tm_admin/projects/project_chat.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
# This file is used to generate the full SQL to create database
# tables, as well as the protobuf files.

- chat:
- id:
- int64
- required: true
- share: true
- sequence: true
- unique: true
- project_id:
- int32
- required: true
- user_id:
- int32
- required: true
- time_stamp:
- timestamp
- required: true
- message:
- string
- required: true

0 comments on commit fc0b1cf

Please sign in to comment.