core: fix deleting user with chat tags (#6374)

* core: fix deleting user with chat tags

* schema, tests

* schema

* update simplexmq

* update ios

* plans
This commit is contained in:
spaced4ndy
2025-10-23 08:30:36 +01:00
committed by GitHub
parent 505fde30f8
commit 2badeea19c
9 changed files with 117 additions and 4 deletions
@@ -663,7 +663,7 @@ CREATE TABLE operator_usage_conditions(
);
CREATE TABLE chat_tags(
chat_tag_id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id INTEGER REFERENCES users,
user_id INTEGER REFERENCES users ON DELETE CASCADE,
chat_tag_text TEXT NOT NULL,
chat_tag_emoji TEXT,
tag_order INTEGER NOT NULL