Add ordering to categories, gallery images, and team members (#501)

This commit is contained in:
triphora
2022-12-23 14:34:04 -05:00
committed by GitHub
parent 9fed1cde25
commit 16d5a70c08
11 changed files with 1217 additions and 1041 deletions

View File

@@ -0,0 +1,3 @@
ALTER TABLE categories ADD COLUMN ordering BIGINT NOT NULL DEFAULT 0;
ALTER TABLE mods_gallery ADD COLUMN ordering BIGINT NOT NULL DEFAULT 0;
ALTER TABLE team_members ADD COLUMN ordering BIGINT NOT NULL DEFAULT 0;