mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Fix typo in DB migration >.>
This commit is contained in:
parent
1fda6ec919
commit
5b262fdc7b
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ alter table systems add column member_limit_override smallint default null;
|
|||
alter table systems add column group_limit_override smallint default null;
|
||||
|
||||
-- Lowering global limit to 1000 in this commit, so increase it for systems already above that
|
||||
update systems s set member_count_override = 1500
|
||||
update systems s set member_limit_override = 1500
|
||||
where (select count(*) from members m where m.system = s.id) > 1000;
|
||||
|
||||
update info set schema_version = 10;
|
||||
Loading…
Add table
Add a link
Reference in a new issue