summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/cert_svc_store_db.sql4
1 files changed, 1 insertions, 3 deletions
diff --git a/etc/cert_svc_store_db.sql b/etc/cert_svc_store_db.sql
index 1810c3c..958351d 100644
--- a/etc/cert_svc_store_db.sql
+++ b/etc/cert_svc_store_db.sql
@@ -1,10 +1,9 @@
-
PRAGMA foreign_keys = ON;
BEGIN TRANSACTION;
CREATE TABLE ssl (
- gname TEXT not null,
+ gname TEXT PRIMARY KEY not null,
certificate TEXT not null,
file_hash TEXT not null,
subject_hash TEXT not null,
@@ -44,4 +43,3 @@ CREATE TABLE disabled_certs (
certificate TEXT not null);
COMMIT;
-