Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions sa/db-next/boulder_sa/20251203000000_CreatedDatetimes.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- +migrate Up
-- SQL in section 'Up' is executed when this migration is applied

ALTER TABLE `authz2` ADD COLUMN `created` datetime DEFAULT CURRENT_TIMESTAMP;
ALTER TABLE `orderFqdnSets` ADD COLUMN `created` datetime DEFAULT CURRENT_TIMESTAMP;

-- +migrate Down
-- SQL section 'Down' is executed when this migration is rolled back

ALTER TABLE `authz2` DROP COLUMN `created`;
ALTER TABLE `orderFqdnSets` DROP COLUMN `created`;