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.DataManagementLog ====== <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 ===== GDPR - Records which records have been anonomised for GDPR - and what actions happened. Data cannot be recovered from here. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **DMLogID** | char(20) | NOT NULL | | | | PersonID | char(20) | NULL | | | | Name | char(30) | NULL | | | | Appnumber | char(12) | NULL | | | | WhenEntered | timestamp | NULL | current timestamp | | | WhoEntered | char(20) | NULL | | | | Action | char(20) | NULL | | View, Email, Print, Delete, Other | | OtherDetail | long varchar | NULL | | | | Outcome | long varchar | NULL | | Success or Fail | | OutcomeDetail | long varchar | NULL | | | ===== Primary Key ===== * DMLogID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== 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"."DataManagementLog" -- Table comment: GDPR - Records which records have been anonomised for GDPR - and what actions happened. Data cannot be recovered from here. -- Statement count: 4 CREATE TABLE "pears"."DataManagementLog" ( "DMLogID" char(20) NOT NULL ,"PersonID" char(20) NULL ,"Name" char(30) NULL ,"Appnumber" char(12) NULL ,"WhenEntered" timestamp NULL DEFAULT current timestamp ,"WhoEntered" char(20) NULL ,"Action" char(20) NULL ,"OtherDetail" long varchar NULL ,"Outcome" long varchar NULL ,"OutcomeDetail" long varchar NULL ,PRIMARY KEY ("DMLogID" ASC) ) go COMMENT ON COLUMN "pears"."DataManagementLog"."Action" IS 'View, Email, Print, Delete, Other' go COMMENT ON COLUMN "pears"."DataManagementLog"."Outcome" IS 'Success or Fail' go COMMENT ON TABLE "pears"."DataManagementLog" IS 'GDPR - Records which records have been anonomised for GDPR - and what actions happened. Data cannot be recovered from here.' go </code> database/tables/pears_datamanagementlog.txt Last modified: 2026/08/07 19:24by 127.0.0.1