File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed
kms-connector/connector-db/migrations Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,8 @@ DROP TABLE IF EXISTS preprocess_kskgen_requests;
1313-- Updating/creating PrepKeygen tables/triggers --
1414-- ------------------------------------------------------
1515-- Create new ParamsType and KeyType enums
16- DO $$ BEGIN
17- CREATE TYPE params_type AS ENUM (' Default' , ' Test' );
18- EXCEPTION
19- WHEN duplicate_object THEN null ;
20- END $$;
21-
22- DO $$ BEGIN
23- CREATE TYPE key_type AS ENUM (' Server' , ' Public' );
24- EXCEPTION
25- WHEN duplicate_object THEN null ;
26- END $$;
16+ CREATE TYPE params_type AS ENUM (' Default' , ' Test' );
17+ CREATE TYPE key_type AS ENUM (' Server' , ' Public' );
2718
2819CREATE TABLE IF NOT EXISTS prep_keygen_requests (
2920 prep_keygen_id BYTEA NOT NULL ,
You can’t perform that action at this time.
0 commit comments