Added crashed DB table display to admin web screens

Added --vicidial-dial-log-only flag to log archive script

git-svn-id: svn://192.168.202.10@3950 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2025-10-26 12:39:52 +00:00
parent 6e6609f993
commit c3e53f7975
9 changed files with 448 additions and 16 deletions
+10
View File
@@ -3030,3 +3030,13 @@ CREATE INDEX rllst on recording_live_log(start_time);
CREATE TABLE recording_live_log_archive LIKE recording_live_log;
UPDATE system_settings SET db_schema_version='1732',db_schema_update_date=NOW() where db_schema_version < 1732;
CREATE TABLE crashed_tables (
table_name VARCHAR(100) PRIMARY KEY NOT NULL,
crashed_datetime DATETIME,
last_check_datetime DATETIME
) ENGINE=MyISAM;
ALTER TABLE system_settings ADD db_crashed_tables_check ENUM('0','1','2','3','4','5','6') default '1';
UPDATE system_settings SET db_schema_version='1733',db_schema_update_date=NOW() where db_schema_version < 1733;