mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
16 lines
263 B
SQL
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
|