Diff -- drift_sense.DATABASE_MONITOR_SETTINGS
Diff
drift_sense.DATABASE_MONITOR_SETTINGS
on local at 2026-07-10 22:20:22
Added
+18
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to 0b700126eb92
to 0b700126eb92
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.| 1 | CREATE TABLE `DATABASE_MONITOR_SETTINGS` ( | |
| 2 | `database_list_id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
| 3 | `server_id` int(10) unsigned NOT NULL DEFAULT '1', | |
| 4 | `status` tinyint(1) NOT NULL DEFAULT '0', | |
| 5 | `db_name` varchar(255) DEFAULT NULL, | |
| 6 | `hostname` varchar(255) DEFAULT NULL, | |
| 7 | `port` varchar(255) DEFAULT NULL, | |
| 8 | `username` varchar(255) DEFAULT NULL, | |
| 9 | `password` varchar(255) DEFAULT NULL, | |
| 10 | `connection_status` tinyint(1) NOT NULL DEFAULT '0', | |
| 11 | `last_connection` datetime DEFAULT NULL, | |
| 12 | `track_row_count` tinyint(1) NOT NULL DEFAULT '0', | |
| 13 | `notify_emails` varchar(1000) DEFAULT NULL, | |
| 14 | `ignore_tables` text, | |
| 15 | `track_tables_silently` text, | |
| 16 | PRIMARY KEY (`database_list_id`), | |
| 17 | KEY `idx_server` (`server_id`) | |
| 18 | ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 |