Overview
Comment: | Fixed schema typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80-processes |
Files: | files | file ages | folders |
SHA1: |
4ce89b978ddcf420f08e9c1e79b519f8 |
User & Date: | matt on 2023-10-02 06:19:45 |
Other Links: | branch diff | manifest | tags |
Context
2023-10-02
| ||
07:00 | Process registration now working check-in: 169e4f3073 user: matt tags: v1.80-processes | |
06:19 | Fixed schema typo check-in: 4ce89b978d user: matt tags: v1.80-processes | |
2023-10-01
| ||
19:23 | wip check-in: b31ebcea09 user: matt tags: v1.80-processes | |
Changes
Modified dbfile.scm from [fed454e62d] to [a21f068239].
︙ | ︙ | |||
476 477 478 479 480 481 482 | starttime INTEGER, endtime INTEGER, status TEXT, purpose TEXT, dbname TEXT, mtversion TEXT, reason TEXT DEFAULT 'none', | | | 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | starttime INTEGER, endtime INTEGER, status TEXT, purpose TEXT, dbname TEXT, mtversion TEXT, reason TEXT DEFAULT 'none', CONSTRAINT no_sync_processes UNIQUE (host,pid));" )))))) (on-tmp (equal? (car (string-split dbpath "/")) "tmp")) (db (if on-tmp (dbfile:cautious-open-database dbname init-proc 0 "WAL") (dbfile:cautious-open-database dbname init-proc 0 #f) ;; (sqlite3:open-database dbname) ))) |
︙ | ︙ |