From 027991b253cbec7ee93cbc6339bb952d91a1d322 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Sun, 20 Oct 2024 12:31:35 +0800 Subject: [PATCH] chore: --- .../db/migration-pg/v10011__cname_provider_user_id.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 packages/ui/certd-server/db/migration-pg/v10011__cname_provider_user_id.sql diff --git a/packages/ui/certd-server/db/migration-pg/v10011__cname_provider_user_id.sql b/packages/ui/certd-server/db/migration-pg/v10011__cname_provider_user_id.sql new file mode 100644 index 00000000..1258b492 --- /dev/null +++ b/packages/ui/certd-server/db/migration-pg/v10011__cname_provider_user_id.sql @@ -0,0 +1,4 @@ +ALTER TABLE cd_cname_provider ADD COLUMN user_id bigint; + +update cd_cname_provider set user_id = 1; +