mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-11 08:06:13 +00:00
Remove DynamoDB-backed storage paths, add Postgres/HTTP repositories for mailbox state maps, wire the internal message-map API, and add provisioning runner/migration plumbing.
6 lines
337 B
SQL
6 lines
337 B
SQL
-- Provisioning templates gained a "draft" concept in the admin UI (save a
|
|
-- template without it becoming usable / auto-provision-eligible). Persist it
|
|
-- so the flag survives a round-trip instead of being silently dropped.
|
|
ALTER TABLE public.provisioning_templates
|
|
ADD COLUMN IF NOT EXISTS is_draft boolean NOT NULL DEFAULT false;
|