Skip to content

Commit

Permalink
Update paused table schema
Browse files Browse the repository at this point in the history
  • Loading branch information
pgporada committed Aug 9, 2024
1 parent 28f0934 commit f49f264
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sa/db-next/boulder_sa/20240514000000_Paused.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
-- rate of ~18% per year.

CREATE TABLE `paused` (
`registrationID` bigint(20) NOT NULL,
`registrationID` bigint(20) UNSIGNED NOT NULL,
`identifierType` tinyint(4) NOT NULL,
`identifierValue` varchar(255) NOT NULL,
`pausedAt` datetime NOT NULL,
`unpausedAt` datetime DEFAULT NULL,
PRIMARY KEY (`registrationID`, `identifierType`, `identifierValue`)
PRIMARY KEY (`registrationID`, `identifierValue`, `identifierType`)
);

-- +migrate Down
Expand Down

0 comments on commit f49f264

Please sign in to comment.