...

Text file src/github.com/letsencrypt/boulder/sa/db-next/boulder_sa/20230419000002_DropCertStatusLockCol.sql

Documentation: github.com/letsencrypt/boulder/sa/db-next/boulder_sa

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

View as plain text