From fe9f1e1142321c681eae4c7b2b0c60b5c10b93cd Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Mon, 8 Dec 2025 22:17:41 +0500 Subject: fix: misspell in table name --- database.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'database.sql') 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 ( -- cgit v1.2.3