Table of Contents



pears.socialcarecontacttypes

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Description

Social care. What types the contacts are i.e doctor neighbour - relative etc.

Columns

Column Type Null Default Comment
code char(1) NOT NULL
description char(30) NULL
SortOrder smallint NULL

Primary Key

Foreign Keys

Referenced By

Indexes

Triggers

Original SQL

-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."socialcarecontacttypes"
-- Table comment: Social care.  What types the contacts are i.e doctor neighbour - relative etc.
-- Statement count: 2
 
CREATE TABLE "pears"."socialcarecontacttypes" (
    "code"                           CHAR(1) NOT NULL
   ,"description"                    CHAR(30) NULL
   ,"SortOrder"                      SMALLINT NULL
   ,PRIMARY KEY ("code" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."socialcarecontacttypes" IS 
	'Social care.  What types the contacts are i.e doctor neighbour - relative etc.'
GO