fix: correct number in migration 46 (merge issue)

This commit is contained in:
alyssa 2024-11-10 04:29:06 +09:00
parent cbc5a34dae
commit 87196e3297

View file

@ -1,4 +1,4 @@
-- database version 45 -- database version 46
-- adds banner privacy -- adds banner privacy
alter table members add column banner_privacy int not null default 1 check (banner_privacy = ANY (ARRAY[1,2])); alter table members add column banner_privacy int not null default 1 check (banner_privacy = ANY (ARRAY[1,2]));
@ -9,4 +9,4 @@ update members set banner_privacy = 2 where description_privacy = 2;
update groups set banner_privacy = 2 where description_privacy = 2; update groups set banner_privacy = 2 where description_privacy = 2;
update systems set banner_privacy = 2 where description_privacy = 2; update systems set banner_privacy = 2 where description_privacy = 2;
update info set schema_version = 45; update info set schema_version = 46;