From 0a3b86e9cae5feb02afc190e939b078c8e6ad95c Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Thu, 5 Mar 2020 08:44:32 +0100 Subject: [PATCH] add timestamp type --- snippets/db/dot_parser.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/snippets/db/dot_parser.js b/snippets/db/dot_parser.js index b16216b..985ac74 100644 --- a/snippets/db/dot_parser.js +++ b/snippets/db/dot_parser.js @@ -22,6 +22,8 @@ function get_type (short) { return 'boolean'; case '🖹': return 'text'; + case '🕓': + return 'timestamp'; default: return ''; }