Diff -- drift_sense.NAMED_RELEASES

O Operator
Diff

drift_sense.NAMED_RELEASES

on local at 2026-07-11 23:35:02

Added
+2
lines
Removed
-0
lines
Context
12
unchanged
Blobs
from e28af7500460
to 8b514aefaf64
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
11CREATE TABLE `NAMED_RELEASES` (
22 `named_release_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
33 `name` varchar(120) NOT NULL,
44 `description` varchar(500) DEFAULT NULL,
55 `released_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
66 `released_by` varchar(120) DEFAULT NULL,
77 `is_locked` tinyint(1) NOT NULL DEFAULT '1',
88 `notes` text,
99 `created_at` timestamp NULL DEFAULT NULL,
10 `scope_monitor_id` int(10) unsigned DEFAULT NULL,
11 `scope_server_id` int(10) unsigned DEFAULT NULL,
1012 PRIMARY KEY (`named_release_id`),
1113 KEY `idx_released_at` (`released_at`)
1214) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4