Files
databasus/backend/migrations/20250809062256_add_telegram_thread_id.sql
2025-08-09 09:45:15 +03:00

16 lines
263 B
SQL

-- +goose Up
-- +goose StatementBegin
ALTER TABLE telegram_notifiers
ADD COLUMN thread_id BIGINT;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE telegram_notifiers
DROP COLUMN IF EXISTS thread_id;
-- +goose StatementEnd