Sync telesrv b96f2dd (feat(bot): complete keyboards callbacks and durable delivery). Skipped private docs and preserved public README files per sync rules; normalized the appearance seed log label for public naming.
10 lines
376 B
SQL
10 lines
376 B
SQL
ALTER TABLE public.bot_api_update_states
|
|
ADD COLUMN poll_owner text NOT NULL DEFAULT '',
|
|
ADD COLUMN poll_expires_at timestamptz;
|
|
|
|
ALTER TABLE public.bot_api_update_states
|
|
ADD CONSTRAINT bot_api_update_states_poll_lease_check CHECK (
|
|
(poll_owner = '' AND poll_expires_at IS NULL)
|
|
OR
|
|
(poll_owner <> '' AND poll_expires_at IS NOT NULL)
|
|
);
|