====== pears.IQXNetEmailDetails ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== Description ===== This is the Maintaince > IQXWeb Settings > Email Details information ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **IQXNetEmailDetailsID** | char(20) | NOT NULL | | | | WebAddress | char(100) | NULL | | | | AgencyName | char(100) | NULL | | | | EmailRoot | char(100) | NULL | | | | SMTPHost | char(100) | NULL | | | | SMTPUserID | char(50) | NULL | | | | SMTPPassword | char(200) | NULL | | | | SMTPSenderAddress | char(50) | NULL | | | | SMTPPort | integer | NULL | | | | SMTPTLS | tinyint | NULL | | | | DefaultUserPassword | char(50) | NULL | | | | WebSiteFolder | char(100) | NULL | | | ===== Primary Key ===== * IQXNetEmailDetailsID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== ^ Table ^ Constraint ^ Columns ^ Referenced columns ^ | [[database:tables:pears_agencydetails|pears.agencydetails]] | IQXNetEmailDetails | IQXNetEmailDetailsID | IQXNetEmailDetailsID | | [[database:tables:pears_department|pears.Department]] | IQXNetEmailDetails | IQXNetEmailDetailsID | IQXNetEmailDetailsID | | [[database:tables:pears_division|pears.Division]] | IQXNetEmailDetails | IQXNetEmailDetailsID | IQXNetEmailDetailsID | | [[database:tables:pears_notificationtemplate|pears.NotificationTemplate]] | IQXNetEmailDetails | IQXNetEmailDetailsID | IQXNetEmailDetailsID | | [[database:tables:pears_staff|pears.staff]] | IQXNetEmailDetails | IQXNetEmailDetailsID | IQXNetEmailDetailsID | | [[database:tables:pears_tempdesk|pears.tempdesk]] | IQXNetEmailDetails | IQXNetEmailDetailsID | IQXNetEmailDetailsID | ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."IQXNetEmailDetails" -- Table comment: This is the Maintaince > IQXWeb Settings > Email Details information -- Statement count: 2 CREATE TABLE "pears"."IQXNetEmailDetails" ( "IQXNetEmailDetailsID" char(20) NOT NULL ,"WebAddress" char(100) NULL ,"AgencyName" char(100) NULL ,"EmailRoot" char(100) NULL ,"SMTPHost" char(100) NULL ,"SMTPUserID" char(50) NULL ,"SMTPPassword" char(200) NULL ,"SMTPSenderAddress" char(50) NULL ,"SMTPPort" integer NULL ,"SMTPTLS" tinyint NULL ,"DefaultUserPassword" char(50) NULL ,"WebSiteFolder" char(100) NULL ,PRIMARY KEY ("IQXNetEmailDetailsID" ASC) ) go COMMENT ON TABLE "pears"."IQXNetEmailDetails" IS 'This is the Maintaince > IQXWeb Settings > Email Details information' go