1
0

Added SQL to convert existing datestrings to unixtime.

This commit is contained in:
Markus Birth 2018-10-07 02:21:11 +02:00
parent 5acbfedea1
commit 3e65e5ac5a
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A

View File

@ -0,0 +1,2 @@
UPDATE locations SET dt=strftime('%s', dt) WHERE typeof(dt)='text';
VACUUM;