All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 57s
- Add telegram_integrations table to store bot token and chat_id - Add Integrations tab with Todoist and Telegram integration screens - Remove TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID from env variables - All Telegram configuration now done through UI - Telegram webhook registration happens when user saves bot token - Rename TELEGRAM_WEBHOOK_BASE_URL to WEBHOOK_BASE_URL
17 lines
725 B
SQL
17 lines
725 B
SQL
-- Migration: Add telegram_integrations table
|
|
-- This script creates a table to store Telegram bot tokens and chat IDs
|
|
|
|
-- Create telegram_integrations table
|
|
CREATE TABLE IF NOT EXISTS telegram_integrations (
|
|
id SERIAL PRIMARY KEY,
|
|
chat_id VARCHAR(255),
|
|
bot_token VARCHAR(255)
|
|
);
|
|
|
|
-- Add comment for documentation
|
|
COMMENT ON TABLE telegram_integrations IS 'Stores Telegram bot tokens and chat IDs for integrations';
|
|
COMMENT ON COLUMN telegram_integrations.id IS 'Auto-increment primary key';
|
|
COMMENT ON COLUMN telegram_integrations.chat_id IS 'Telegram chat ID (nullable, set automatically after first message)';
|
|
COMMENT ON COLUMN telegram_integrations.bot_token IS 'Telegram bot token (nullable, set by user)';
|
|
|