We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d036e47 commit 3d35b7eCopy full SHA for 3d35b7e
sa/db-next/boulder_sa/20251203000000_CreatedDatetimes.sql
@@ -0,0 +1,11 @@
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`;
0 commit comments