Diff -- drift_sense.BLOB_INTEGRITY_LOG
Diff

drift_sense.BLOB_INTEGRITY_LOG

on local at 2026-07-13 19:57:53

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