Skip to content

Commit

Permalink
chore: clean up the conversation and message code (#96)
Browse files Browse the repository at this point in the history
Because

we no longer need the conversation/message code in artifact.

This commit

remove the uncessary code about conversation and message.
  • Loading branch information
Yougigun authored Sep 18, 2024
1 parent 28bca2e commit 013b8df
Show file tree
Hide file tree
Showing 9 changed files with 8,361 additions and 13,663 deletions.
2 changes: 1 addition & 1 deletion config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ database:
host: pg-sql
port: 5432
name: artifact
version: 15
version: 16
timezone: Etc/UTC
pool:
idleconnections: 5
Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
BEGIN;

-- Drop the message table
DROP TABLE IF EXISTS message;

-- Drop the conversation table
DROP TABLE IF EXISTS conversation;

COMMIT;
188 changes: 0 additions & 188 deletions pkg/handler/conversation.go

This file was deleted.

Loading

0 comments on commit 013b8df

Please sign in to comment.