====== pears.ExternalCredential ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== 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 ===== -- 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