Add time precision to allow up to 3 fractional digits

This commit is contained in:
Alexandre Bodin 2019-12-05 16:00:39 +01:00
parent c66fe82c41
commit 1c229e24d7

View File

@ -84,7 +84,7 @@ module.exports = async ({
case 'date':
return table.date(name);
case 'time':
return table.time(name);
return table.time(name, 3);
case 'datetime':
return table.datetime(name);
case 'timestamp':