====== pears.AutoMatchGlobalConfig ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== Description ===== For use by Auto-matching procedures ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **AutoMatchGlobalConfigID** | char(20) | NOT NULL | | | | ContactStart | time | NULL | | Start Sending | | ContactEnd | time | NULL | | Stop Sending | | MaxEmails | integer | NULL | 100 | | | MaxSMS | integer | NULL | 100 | | | MaxPush | integer | NULL | 100 | | | MinDelayBetweenEmails | integer | NULL | 30 | in mins | | MinDelayBetweenSMS | integer | NULL | 30 | in mins | | MinDelayBetweenPush | integer | NULL | 30 | in mins | ===== Primary Key ===== * AutoMatchGlobalConfigID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."AutoMatchGlobalConfig" -- Table comment: For use by Auto-matching procedures -- Statement count: 7 CREATE TABLE "pears"."AutoMatchGlobalConfig" ( "AutoMatchGlobalConfigID" char(20) NOT NULL ,"ContactStart" time NULL ,"ContactEnd" time NULL ,"MaxEmails" integer NULL DEFAULT 100 ,"MaxSMS" integer NULL DEFAULT 100 ,"MaxPush" integer NULL DEFAULT 100 ,"MinDelayBetweenEmails" integer NULL DEFAULT 30 ,"MinDelayBetweenSMS" integer NULL DEFAULT 30 ,"MinDelayBetweenPush" integer NULL DEFAULT 30 ,PRIMARY KEY ("AutoMatchGlobalConfigID" ASC) ) go COMMENT ON COLUMN "pears"."AutoMatchGlobalConfig"."ContactStart" IS 'Start Sending' go COMMENT ON COLUMN "pears"."AutoMatchGlobalConfig"."ContactEnd" IS 'Stop Sending' go COMMENT ON COLUMN "pears"."AutoMatchGlobalConfig"."MinDelayBetweenEmails" IS 'in mins' go COMMENT ON COLUMN "pears"."AutoMatchGlobalConfig"."MinDelayBetweenSMS" IS 'in mins' go COMMENT ON COLUMN "pears"."AutoMatchGlobalConfig"."MinDelayBetweenPush" IS 'in mins' go COMMENT ON TABLE "pears"."AutoMatchGlobalConfig" IS 'For use by Auto-matching procedures' go