Table of Contents



pears.ComplianceReferenceType

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
ComplianceDomainID char(20) NOT NULL
RefType tinyint NOT NULL 1
ReferenceCount tinyint NOT NULL 1 count of number reference
Score smallint NOT NULL 1

Primary Key

Foreign Keys

Constraint Columns References Delete/update action
ComplianceDomain ComplianceDomainID pears.ComplianceDomain (ComplianceDomainID) NOT NULL; ON DELETE CASCADE

Referenced By

Indexes

Triggers

Original SQL

-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."ComplianceReferenceType"
-- Table comment: 
-- Statement count: 3
 
CREATE TABLE "pears"."ComplianceReferenceType" (
    "ComplianceDomainID"             CHAR(20) NOT NULL
   ,"RefType"                        tinyint NOT NULL DEFAULT 1
   ,"ReferenceCount"                 tinyint NOT NULL DEFAULT 1
   ,"Score"                          SMALLINT NOT NULL DEFAULT 1
   ,PRIMARY KEY ("ComplianceDomainID" ASC,"RefType" ASC) 
)
GO
 
 
COMMENT ON COLUMN "pears"."ComplianceReferenceType"."ReferenceCount" IS 
	'count of number reference'
GO
 
 
ALTER TABLE "pears"."ComplianceReferenceType"
    ADD NOT NULL FOREIGN KEY "ComplianceDomain" ("ComplianceDomainID" ASC)
    REFERENCES "pears"."ComplianceDomain" ("ComplianceDomainID")
    ON DELETE CASCADE
GO