Skip to content

Commit ef7d015

Browse files
committed
SNIPPETS: Add database revision for snippets table.
1 parent 12b5a4c commit ef7d015

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
-- Revision Version: V5
2+
-- Revises: V4
3+
-- Creation Date: 2024-03-10 05:51:39.252162 UTC
4+
-- Reason: add table for snippets
5+
6+
CREATE TABLE IF NOT EXISTS snippets
7+
(
8+
guild_id bigint NOT NULL,
9+
name VARCHAR(100),
10+
content TEXT,
11+
PRIMARY KEY (guild_id, name)
12+
);

0 commit comments

Comments
 (0)