]> WPIA git - gigi.git/blob - upgrade/from_30.sql
Merge "upd: remove 'browser install'"
[gigi.git] / upgrade / from_30.sql
1 CREATE TYPE "certificateAttachmentType" AS ENUM ('CSR','CRT');
2
3 CREATE TABLE "certificateAttachment" (
4   "certid" int NOT NULL,
5   "type" "certificateAttachmentType" NOT NULL,
6   "content" text NOT NULL,
7   PRIMARY KEY ("certid", "type")
8 );