Diff -- drift_sense.LOCKED_TABLE_LOGS
Diff
drift_sense.LOCKED_TABLE_LOGS
on local at 2026-07-10 22:20:22
Added
+12
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to 2d9ae7abe922
to 2d9ae7abe922
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.| 1 | CREATE TABLE `LOCKED_TABLE_LOGS` ( | |
| 2 | `locked_table_logs_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
| 3 | `server_id` int(10) unsigned NOT NULL DEFAULT '1', | |
| 4 | `db_name` varchar(255) DEFAULT NULL, | |
| 5 | `table_name` varchar(255) DEFAULT NULL, | |
| 6 | `in_use` int(10) unsigned NOT NULL DEFAULT '0', | |
| 7 | `name_locked` int(10) unsigned NOT NULL DEFAULT '0', | |
| 8 | `date_time` datetime DEFAULT NULL, | |
| 9 | PRIMARY KEY (`locked_table_logs_id`), | |
| 10 | KEY `idx_server_time` (`server_id`,`date_time`), | |
| 11 | KEY `idx_db_table` (`db_name`(191),`table_name`(191)) | |
| 12 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 |