github.com/letsencrypt/boulder@v0.20251208.0/sa/db-next/boulder_sa/20251203000000_CreatedDatetimes.sql (about) 1 -- +migrate Up 2 -- SQL in section 'Up' is executed when this migration is applied 3 4 ALTER TABLE `authz2` ADD COLUMN `created` datetime DEFAULT CURRENT_TIMESTAMP; 5 ALTER TABLE `orderFqdnSets` ADD COLUMN `created` datetime DEFAULT CURRENT_TIMESTAMP; 6 7 -- +migrate Down 8 -- SQL section 'Down' is executed when this migration is rolled back 9 10 ALTER TABLE `authz2` DROP COLUMN `created`; 11 ALTER TABLE `orderFqdnSets` DROP COLUMN `created`;