Task
Create a DATABASE.md file in the root of the project to document the database schema, including all tables and their columns.
Acceptance Criteria
Example Template to Use
Table: tickets
Purpose: Stores the primary state and metadata for each customer support ticket channel.
| Column Name |
Data Type |
Constraints |
Description |
Example |
id |
SERIAL |
PRIMARY KEY |
Auto-incrementing unique identifier. |
125 |
channel_id |
NUMERIC(20,0) |
NOT NULL |
The Discord ID of the text channel. |
1234... |
status |
INTEGER |
NOT NULL |
The current status of the ticket. |
1 |
(Continue for all columns and tables)
Task
Create a
DATABASE.mdfile in the root of the project to document the database schema, including all tables and their columns.Acceptance Criteria
DATABASE.mdfile exists.ticketstable.ticket_participantstable.keywordstable.keyword_channel.ticket_panelstable.Example Template to Use
Table:
ticketsPurpose: Stores the primary state and metadata for each customer support ticket channel.
idSERIALPRIMARY KEY125channel_idNUMERIC(20,0)NOT NULL1234...statusINTEGERNOT NULL1(Continue for all columns and tables)