From 44fef1c2a163bdfd781ef08a06e3cf5cf9b7d5da Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Sun, 17 Jul 2016 23:54:42 +0100 Subject: Add a page for revoking certs Add a template for revocation Use DATETIME type to store created/expires times Require auth for the /admin and /revoke endpoints --- cmd/dbinit/dbinit.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/dbinit') diff --git a/cmd/dbinit/dbinit.go b/cmd/dbinit/dbinit.go index 4431ced..de06cbb 100644 --- a/cmd/dbinit/dbinit.go +++ b/cmd/dbinit/dbinit.go @@ -26,8 +26,8 @@ func main() { `CREATE TABLE IF NOT EXISTS issued_certs ( key_id VARCHAR(255) NOT NULL, principals VARCHAR(255) NULL, - created_at INT(11) NULL, - expires_at INT(11) NULL, + created_at DATETIME NULL, + expires_at DATETIME NULL, revoked BOOLEAN DEFAULT NULL, raw_key TEXT NULL, PRIMARY KEY (key_id) -- cgit v1.2.3