From 32289e336fba9f9c3620d0331acfbfc8c8582017 Mon Sep 17 00:00:00 2001 From: Redume Date: Fri, 6 Dec 2024 18:39:17 +0300 Subject: [PATCH] feat: Update schema --- database/data/schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/data/schema.sql b/database/data/schema.sql index de0939e..abc96bb 100644 --- a/database/data/schema.sql +++ b/database/data/schema.sql @@ -8,7 +8,7 @@ CREATE TABLE message CREATE TABLE chat ( chat_id BIGINT NOT NULL, - channel_id BIGINT, + channel_id TEXT, min_reaction_count INT DEFAULT 5, - emoji_list TEXT[] DEFAULT array['⭐'] + emoji_list TEXT[] DEFAULT array['⭐', '😁'] ); \ No newline at end of file