github.com/letsencrypt/boulder@v0.20251208.0/sa/db-next/boulder_sa/20250708000000_DropRegistrationsLockCol.sql (about)

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