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.Trengo ====== <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 ^ | **TrengoID** | integer | NOT NULL | | | | Description | char(100) | NULL | | | | StaffID | char(20) | NULL | | | ===== Primary Key ===== * TrengoID ===== Foreign Keys ===== ^ Constraint ^ Columns ^ References ^ Delete/update action ^ | Staff | StaffID | [[database:tables:pears_staff|pears.staff (staffid)]] | ON DELETE SET NULL | ===== Referenced By ===== ^ Table ^ Constraint ^ Columns ^ Referenced columns ^ | [[database:tables:pears_trengoparameters|pears.TrengoParameters]] | Trengo | TrengoID | TrengoID | | [[database:tables:pears_trengosent|pears.TrengoSent]] | Trengo | TrengoID | TrengoID | ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."Trengo" -- Table comment: -- Statement count: 2 CREATE TABLE "pears"."Trengo" ( "TrengoID" integer NOT NULL ,"Description" char(100) NULL ,"StaffID" char(20) NULL ,PRIMARY KEY ("TrengoID" ASC) ) go ALTER TABLE "pears"."Trengo" ADD FOREIGN KEY "Staff" ("StaffID" ASC) REFERENCES "pears"."staff" ("staffid") ON DELETE SET NULL go </code> database/tables/pears_trengo.txt Last modified: 2026/08/07 19:24by 127.0.0.1