mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
fix: correct number in migration 46 (merge issue)
This commit is contained in:
parent
cbc5a34dae
commit
87196e3297
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue