8 lines
274 B
SQL
8 lines
274 B
SQL
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; |