database:tables:pears_etipregex



pears.ETipRegEx

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

Regular expressions for shift import

Column Type Null Default Comment
RegID char(20) NOT NULL
RegType smallint NULL
fieldnames char(40) NULL
RegEx char(60) NULL
Description char(100) NULL
defunct tinyint NULL
EtipID char(20) NULL
  • RegID
Constraint Columns References Delete/update action
Etip EtipID pears.ETip (EtipID) ON DELETE CASCADE
  • No incoming foreign keys found.
  • No indexes found.
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."ETipRegEx"
-- Table comment: Regular expressions for shift import
-- Statement count: 3
 
CREATE TABLE "pears"."ETipRegEx" (
    "RegID"                          CHAR(20) NOT NULL
   ,"RegType"                        SMALLINT NULL
   ,"fieldnames"                     CHAR(40) NULL
   ,"RegEx"                          CHAR(60) NULL
   ,"Description"                    CHAR(100) NULL
   ,"defunct"                        tinyint NULL
   ,"EtipID"                         CHAR(20) NULL
   ,PRIMARY KEY ("RegID" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."ETipRegEx" IS 
	'Regular expressions for shift import'
GO
 
 
ALTER TABLE "pears"."ETipRegEx"
    ADD FOREIGN KEY "Etip" ("EtipID" ASC)
    REFERENCES "pears"."ETip" ("EtipID")
    ON DELETE CASCADE
GO
  • database/tables/pears_etipregex.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1