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.ExternalCredential ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **ExternalCredentialID** | char(20) | NOT NULL | | | | CredentialType | char(20) | NOT NULL | | | | CredentialName | char(50) | NOT NULL | | | | Description | char(255) | NULL | | | | HostURL | char(255) | NULL | | | | HostPort | integer | NULL | | | | UserName | char(255) | NULL | | | | Password | long binary | NULL | | | | PasswordLast4 | long varchar | NULL | | | | TLS | tinyint | NULL | | | | EmailAddress | char(255) | NULL | | | | LogDirectory | long varchar | NULL | | | | ClientID | char(255) | NULL | | | | TenantID | char(255) | NULL | | | | ClientSecret | long binary | NULL | | | | ClientSecretLast4 | long varchar | NULL | | | | FolderID | char(255) | NULL | | | | SearchString | char(255) | NULL | | | | APIKey | long binary | NULL | | | | APIKeyLast4 | long varchar | NULL | | | | Token | long binary | NULL | | | | TokenLast4 | long varchar | NULL | | | | LinkURL | char(255) | NULL | | | | Defunct | tinyint | NOT NULL | 0 | | ===== Primary Key ===== * ExternalCredentialID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | ExternalCredential_CredentialName | Unique index | CredentialName | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."ExternalCredential" -- Table comment: -- Statement count: 2 CREATE TABLE "pears"."ExternalCredential" ( "ExternalCredentialID" char(20) NOT NULL ,"CredentialType" char(20) NOT NULL ,"CredentialName" char(50) NOT NULL ,"Description" char(255) NULL ,"HostURL" char(255) NULL ,"HostPort" integer NULL ,"UserName" char(255) NULL ,"Password" long binary NULL ,"PasswordLast4" long varchar NULL ,"TLS" tinyint NULL ,"EmailAddress" char(255) NULL ,"LogDirectory" long varchar NULL ,"ClientID" char(255) NULL ,"TenantID" char(255) NULL ,"ClientSecret" long binary NULL ,"ClientSecretLast4" long varchar NULL ,"FolderID" char(255) NULL ,"SearchString" char(255) NULL ,"APIKey" long binary NULL ,"APIKeyLast4" long varchar NULL ,"Token" long binary NULL ,"TokenLast4" long varchar NULL ,"LinkURL" char(255) NULL ,"Defunct" tinyint NOT NULL DEFAULT 0 ,PRIMARY KEY ("ExternalCredentialID" ASC) ) go CREATE UNIQUE INDEX "ExternalCredential_CredentialName" ON "pears"."ExternalCredential" ( "CredentialName" ) go </code> database/tables/pears_externalcredential.txt Last modified: 2026/08/07 19:24by 127.0.0.1