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:
parent
21d304812e
commit
102997da4a
|
@ -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;
|
Loading…
Reference in New Issue