1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
php-owntracks-recorder/sql/sqlite_convert_dt_to_unix.sql

3 lines
76 B
SQL

UPDATE locations SET dt=strftime('%s', dt) WHERE typeof(dt)='text';
VACUUM;