Fix scheme for ca certs
CA certs table has a column:
issuer_name TEXT NOT NULL UNIQUE,
this must be changed to
issuer_name TEXT NOT NULL,
common_name TEXT NOT NULL UNIQUE,
I hope the issue is clear
Edited by Vojtech Myslivec
Self sign-up has been disabled due to increased spam activity. If you want to get access, please send an email to a project owner (preferred) or at gitlab(at)nic(dot)cz. We apologize for the inconvenience.
CA certs table has a column:
issuer_name TEXT NOT NULL UNIQUE,
this must be changed to
issuer_name TEXT NOT NULL,
common_name TEXT NOT NULL UNIQUE,
I hope the issue is clear