Renamed and updated project.

This commit is contained in:
2026-01-27 20:27:06 +03:00
parent e6dc59c266
commit 2ee1837fcc
38 changed files with 499 additions and 235 deletions
@@ -0,0 +1,9 @@
CREATE TABLE telegram_chats
(
id BIGSERIAL PRIMARY KEY,
telegram_id BIGINT UNIQUE NOT NULL,
title TEXT NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW()
);
CREATE INDEX idx_telegram_chats_telegram_id ON telegram_chats (telegram_id);