Added SQL to convert existing datestrings to unixtime.

This commit is contained in:
2018-10-07 02:21:11 +02:00
parent 5acbfedea1
commit 3e65e5ac5a
+2
View File
@@ -0,0 +1,2 @@
UPDATE locations SET dt=strftime('%s', dt) WHERE typeof(dt)='text';
VACUUM;