feat/cl4-subscription-status-cli #9

Merged
robbond merged 4 commits from feat/cl4-subscription-status-cli into master 2026-03-05 12:57:15 +00:00
Showing only changes of commit d87808af23 - Show all commits

View File

@@ -0,0 +1,8 @@
alter table public.plesk_subscriptions
add column if not exists status text default 'unknown',
add column if not exists status_raw text,
add column if not exists last_status_sync_at timestamptz;
update public.plesk_subscriptions
set status = 'unknown'
where status is null;