From 0940417324b731e76c67f0d90e3532332fe3285f Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 30 Jul 2015 11:17:27 -0700 Subject: [PATCH] update initial.sql to make schema consistent with staging/prod Signed-off-by: David Lawrence (github: endophage) --- notarymysql/initial.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notarymysql/initial.sql b/notarymysql/initial.sql index e9e926b693..46a2ad0433 100644 --- a/notarymysql/initial.sql +++ b/notarymysql/initial.sql @@ -20,9 +20,9 @@ CREATE TABLE `timestamp_keys` ( DROP TABLE IF EXISTS `private_keys`; CREATE TABLE `private_keys` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `created_at` timestamp NULL, - `updated_at` timestamp NULL, - `deleted_at` timestamp NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `deleted_at` timestamp NULL DEFAULT NULL, `key_id` varchar(255) NOT NULL, `encryption_alg` varchar(255) NOT NULL, `keywrap_alg` varchar(255) NOT NULL,