Show pageOld revisionsBacklinksExport to PDFFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== pears.IQXHubBackup ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Description ===== Results of IQXHub Backup events ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **IQXHubBackupID** | char(20) | NOT NULL | | | | WhenExecuted | timestamp | NULL | current timestamp | | | Description | char(50) | NOT NULL | | | | Failure | tinyint | NULL | 0 | | | Corruption | tinyint | NULL | 0 | | | NotifyFailure | tinyint | NULL | 0 | | | Details | long varchar | NULL | | | ===== Primary Key ===== * IQXHubBackupID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | IQXHubBackupWhen | Index | WhenExecuted | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."IQXHubBackup" -- Table comment: Results of IQXHub Backup events -- Statement count: 3 CREATE TABLE "pears"."IQXHubBackup" ( "IQXHubBackupID" char(20) NOT NULL ,"WhenExecuted" timestamp NULL DEFAULT current timestamp ,"Description" char(50) NOT NULL ,"Failure" tinyint NULL DEFAULT 0 ,"Corruption" tinyint NULL DEFAULT 0 ,"NotifyFailure" tinyint NULL DEFAULT 0 ,"Details" long varchar NULL ,PRIMARY KEY ("IQXHubBackupID" ASC) ) go COMMENT ON TABLE "pears"."IQXHubBackup" IS 'Results of IQXHub Backup events' go CREATE INDEX "IQXHubBackupWhen" ON "pears"."IQXHubBackup" ( "WhenExecuted" ) go </code> database/tables/pears_iqxhubbackup.txt Last modified: 2026/08/07 19:24by 127.0.0.1