Diff -- drift_sense.NAMED_RELEASES
Diff
drift_sense.NAMED_RELEASES
on local at 2026-07-12 00:50:02
Added
+2
lines
Removed
-0
lines
Context
17
unchanged
Blobs
from ef781c027326
to cdd72a5ea28b
to cdd72a5ea28b
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.| 1 | 1 | CREATE TABLE `NAMED_RELEASES` ( |
| 2 | 2 | `named_release_id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
| 3 | 3 | `name` varchar(120) NOT NULL, |
| 4 | 4 | `description` varchar(500) DEFAULT NULL, |
| 5 | 5 | `released_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, |
| 6 | 6 | `released_by` varchar(120) DEFAULT NULL, |
| 7 | 7 | `is_locked` tinyint(1) NOT NULL DEFAULT '1', |
| 8 | 8 | `notes` text, |
| 9 | 9 | `created_at` timestamp NULL DEFAULT NULL, |
| 10 | 10 | `scope_monitor_id` int(10) unsigned DEFAULT NULL, |
| 11 | 11 | `scope_server_id` int(10) unsigned DEFAULT NULL, |
| 12 | 12 | `alert_delivery_kind` enum('none','generic_webhook','slack','discord') NOT NULL DEFAULT 'none', |
| 13 | 13 | `alert_delivery_url` varchar(2000) DEFAULT NULL, |
| 14 | 14 | `last_pin_drift_check_at` datetime DEFAULT NULL, |
| 15 | `tier` enum('draft','working','stable') NOT NULL DEFAULT 'draft', | |
| 16 | `version_label` varchar(60) DEFAULT NULL, | |
| 15 | 17 | PRIMARY KEY (`named_release_id`), |
| 16 | 18 | KEY `idx_released_at` (`released_at`) |
| 17 | 19 | ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 |