sa: Drop LockCol from registrations table in db-next (#8298)

`LockCol` in the `registrations` table is no longer used or needed, as
of #8296.

Part of #7934
This commit is contained in:
James Renken 2025-07-09 09:38:13 -07:00 committed by GitHub
parent 21d304812e
commit 102997da4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
-- +migrate Up
-- SQL in section 'Up' is executed when this migration is applied
ALTER TABLE `registrations` DROP COLUMN `LockCol`;
-- +migrate Down
-- SQL section 'Down' is executed when this migration is rolled back
ALTER TABLE `registrations` ADD COLUMN `LockCol` BIGINT(20) NOT NULL DEFAULT 0;