]> WPIA git - gigi.git/blob - src/club/wpia/gigi/database/upgrade/from_30.sql
Merge changes I46ae11f8,I6d71e70e,Ie19e3229
[gigi.git] / src / club / wpia / gigi / database / 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 );