-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18ca7b7
commit 5891a42
Showing
3 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
xmtp_mls/migrations/2024-10-17-173334_create_v2_conversations/down.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 @@ | ||
DROP TABLE IF EXISTS "v2_conversations"; |
6 changes: 6 additions & 0 deletions
6
xmtp_mls/migrations/2024-10-17-173334_create_v2_conversations/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,6 @@ | ||
CREATE TABLE v2_conversations ( | ||
topic TEXT NOT NULL PRIMARY KEY, | ||
created_at_ns BIGINT NOT NULL, | ||
peer_address INTEGER NOT NULL, | ||
envelope_bytes BLOB NOT NULL | ||
); |
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