Diff -- drift_sense.NAMED_RELEASES
Diff
drift_sense.NAMED_RELEASES
on local at 2026-07-10 22:20:22
Added
+12
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to e28af7500460
to e28af7500460
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.| 1 | CREATE TABLE `NAMED_RELEASES` ( | |
| 2 | `named_release_id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
| 3 | `name` varchar(120) NOT NULL, | |
| 4 | `description` varchar(500) DEFAULT NULL, | |
| 5 | `released_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
| 6 | `released_by` varchar(120) DEFAULT NULL, | |
| 7 | `is_locked` tinyint(1) NOT NULL DEFAULT '1', | |
| 8 | `notes` text, | |
| 9 | `created_at` timestamp NULL DEFAULT NULL, | |
| 10 | PRIMARY KEY (`named_release_id`), | |
| 11 | KEY `idx_released_at` (`released_at`) | |
| 12 | ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 |