diff options
| author | ilotterytea <iltsu@alright.party> | 2025-12-08 22:17:41 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-12-08 22:17:41 +0500 |
| commit | fe9f1e1142321c681eae4c7b2b0c60b5c10b93cd (patch) | |
| tree | 588ce860d2f486ec432fee034951339f005736bd /database.sql | |
| parent | 95800ffe216a83bc0eba994ecc53ed22860fe90e (diff) | |
fix: misspell in table name
Diffstat (limited to 'database.sql')
| -rw-r--r-- | database.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database.sql b/database.sql index 5f3bfbc..f1aca05 100644 --- a/database.sql +++ b/database.sql @@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS tags ( CREATE TABLE IF NOT EXISTS tag_assigns ( id CHAR(32) NOT NULL PRIMARY KEY DEFAULT REPLACE(UUID(),'-',''), tag_id CHAR(32) NOT NULL REFERENCES tags(id) ON DELETE CASCADE, - emote_id CHAR(32) NOT NULL REFERENCES emote(id) ON DELETE CASCADE + emote_id CHAR(32) NOT NULL REFERENCES emotes(id) ON DELETE CASCADE ); CREATE TABLE IF NOT EXISTS emote_sets ( |
