diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-26 14:13:45 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-26 14:13:45 +0500 |
| commit | 4a8bca1bcfa18fd42b238760760bcba80d9eb05a (patch) | |
| tree | 214363da55691b79a37b26781dbeae4423dc8dec /database.sql | |
| parent | 7e8a345464d9f18fe3049c2bff2be6e98f1b9cf3 (diff) | |
feat: is_global column in emoteset
Diffstat (limited to 'database.sql')
| -rw-r--r-- | database.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/database.sql b/database.sql index c415fe3..1c4cb79 100644 --- a/database.sql +++ b/database.sql @@ -30,7 +30,8 @@ CREATE TABLE IF NOT EXISTS emote_sets ( owner_id INTEGER NOT NULL REFERENCES users(id), linked_to INTEGER REFERENCES emote_sets(id), name TEXT NOT NULL, - size INTEGER + size INTEGER, + is_global BOOLEAN NOT NULL DEFAULT false ); CREATE TABLE IF NOT EXISTS emote_set_contents ( |
