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.StaffSynety ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Description ===== Integration with Synety phone system. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **StaffID** | char(20) | NOT NULL | | | | AccountID | char(60) | NULL | | | | Password | char(60) | NULL | | | | NotificationToken | char(60) | NULL | | | ===== Primary Key ===== * StaffID ===== Foreign Keys ===== ^ Constraint ^ Columns ^ References ^ Delete/update action ^ | Staff | StaffID | [[database:tables:pears_staff|pears.staff (staffid)]] | NOT NULL; ON DELETE CASCADE | ===== Referenced By ===== * No incoming foreign keys found. ===== 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"."StaffSynety" -- Table comment: Integration with Synety phone system. -- Statement count: 3 CREATE TABLE "pears"."StaffSynety" ( "StaffID" char(20) NOT NULL ,"AccountID" char(60) NULL ,"Password" char(60) NULL ,"NotificationToken" char(60) NULL ,PRIMARY KEY ("StaffID" ASC) ) go COMMENT ON TABLE "pears"."StaffSynety" IS 'Integration with Synety phone system.' go ALTER TABLE "pears"."StaffSynety" ADD NOT NULL FOREIGN KEY "Staff" ("StaffID" ASC) REFERENCES "pears"."staff" ("staffid") ON DELETE CASCADE go </code> database/tables/pears_staffsynety.txt Last modified: 2026/08/07 19:24by 127.0.0.1