Diff -- drift_sense.NAMED_RELEASES

O Operator
Diff

drift_sense.NAMED_RELEASES

on local at 2026-07-12 00:25:02

Added
+1
lines
Removed
-1
lines
Context
16
unchanged
Blobs
from 1b849628c398
to ef781c027326
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,
1010 `scope_monitor_id` int(10) unsigned DEFAULT NULL,
1111 `scope_server_id` int(10) unsigned DEFAULT NULL,
1212 `alert_delivery_kind` enum('none','generic_webhook','slack','discord') NOT NULL DEFAULT 'none',
1313 `alert_delivery_url` varchar(2000) DEFAULT NULL,
1414 `last_pin_drift_check_at` datetime DEFAULT NULL,
1515 PRIMARY KEY (`named_release_id`),
1616 KEY `idx_released_at` (`released_at`)
17) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4
17) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4