Skip to content

Commit daf80ee

Browse files
authored
Remove registrations.LockCol (#8698)
This column has been dropped in prod, so we can remove it from db, and remove the ALTER TABLE statement from db-next. Fixes #7934
1 parent 1958cc9 commit daf80ee

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

sa/db/01-boulder_sa.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ CREATE TABLE `registrations` (
198198
`jwk` mediumblob NOT NULL,
199199
`jwk_sha256` varchar(255) NOT NULL,
200200
`agreement` varchar(255) NOT NULL,
201-
`LockCol` bigint(20) NOT NULL DEFAULT 0,
202201
`createdAt` datetime NOT NULL,
203202
`status` varchar(255) NOT NULL DEFAULT 'valid',
204203
PRIMARY KEY (`id`),

sa/db/01-boulder_sa_next.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ CREATE TABLE `registrations` (
202202
`jwk` mediumblob NOT NULL,
203203
`jwk_sha256` varchar(255) NOT NULL,
204204
`agreement` varchar(255) NOT NULL,
205-
`LockCol` bigint(20) NOT NULL DEFAULT 0,
206205
`createdAt` datetime NOT NULL,
207206
`status` varchar(255) NOT NULL DEFAULT 'valid',
208207
PRIMARY KEY (`id`),
@@ -245,5 +244,4 @@ CREATE TABLE `serials` (
245244

246245
ALTER TABLE `certificateStatus` DROP COLUMN `subscriberApproved`;
247246
ALTER TABLE `certificateStatus` DROP COLUMN `LockCol`;
248-
ALTER TABLE `registrations` DROP COLUMN `LockCol`;
249247
ALTER TABLE `revokedCertificates` ADD KEY `serial` (`serial`);

0 commit comments

Comments
 (0)