From 9b8d0ba167425096c1c8430ba03bcb9db4d58960 Mon Sep 17 00:00:00 2001 From: Samuel Hawksby-Robinson Date: Mon, 20 Jul 2020 23:44:57 +0100 Subject: [PATCH] Added chat_id to emoji_reactions table --- .../sqlite/1594390919_create_emoji_reactions_table.up.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/protocol/migrations/sqlite/1594390919_create_emoji_reactions_table.up.sql b/protocol/migrations/sqlite/1594390919_create_emoji_reactions_table.up.sql index 46e49b4b0..51919b048 100644 --- a/protocol/migrations/sqlite/1594390919_create_emoji_reactions_table.up.sql +++ b/protocol/migrations/sqlite/1594390919_create_emoji_reactions_table.up.sql @@ -4,5 +4,6 @@ CREATE TABLE IF NOT EXISTS emoji_reactions ( source TEXT NOT NULL, emoji_id INT NOT NULL, message_id VARCHAR NOT NULL, + chat_id VARCHAR NOT NULL, retracted INT DEFAULT 0 ); \ No newline at end of file