add timestamp type

This commit is contained in:
Timo Hocker 2020-03-05 08:44:32 +01:00
parent ea0a2e0f11
commit 0a3b86e9ca

View File

@ -22,6 +22,8 @@ function get_type (short) {
return 'boolean'; return 'boolean';
case '🖹': case '🖹':
return 'text'; return 'text';
case '🕓':
return 'timestamp';
default: default:
return ''; return '';
} }