fix: re-add drop for old system_fronters view

831b6d3301 removed the view, and this line in
the cleanup SQL.

The DB migration for 6-char IDs fails to apply if this view exists - so even
though the view itself no longer exists in the code, we should always drop
it on cleanup.
This commit is contained in:
Iris System 2024-04-29 16:48:37 +12:00
parent 53a3d1886b
commit c0b96daa8d

View file

@ -3,6 +3,7 @@
-- This does mean we can't use any functions in row triggers, etc. Still unsure how to handle this. -- This does mean we can't use any functions in row triggers, etc. Still unsure how to handle this.
drop view if exists system_last_switch; drop view if exists system_last_switch;
drop view if exists system_fronters;
drop view if exists member_list; drop view if exists member_list;
drop view if exists group_list; drop view if exists group_list;