Diff -- drift_sense.BLOB_INTEGRITY_LOG
Diff

drift_sense.BLOB_INTEGRITY_LOG

on local at 2026-07-13 17:15:02

Added
+1
lines
Removed
-1
lines
Context
9
unchanged
Blobs
from 5dc66309107d
to e301fc625512
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
11CREATE TABLE `BLOB_INTEGRITY_LOG` (
22 `check_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
33 `blob_sha` char(64) NOT NULL,
44 `status` enum('ok','corrupt','missing') NOT NULL,
55 `checked_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
66 `detail` varchar(500) DEFAULT NULL,
77 PRIMARY KEY (`check_id`),
88 KEY `sha_ix` (`blob_sha`),
99 KEY `when_ix` (`checked_at`)
10) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
10) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4
Keyboard: j next diff k previous diff g top G bottom r restore c compile-check ? help