-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: clean up the conversation and message code (#96)
Because we no longer need the conversation/message code in artifact. This commit remove the uncessary code about conversation and message.
- Loading branch information
Showing
9 changed files
with
8,361 additions
and
13,663 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
9 changes: 9 additions & 0 deletions
9
pkg/db/migration/000016_drop_conversation_and_message_table.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.