Skip to content

Commit 3d35b7e

Browse files
committed
Add current datetime column to orderFqdnSets and authz2 tables
1 parent d036e47 commit 3d35b7e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)