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.BatchTransfers ====== <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 ===== Records of transfer jobs etc. Maintained by the individual processes. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **BatchType** | char(12) | NOT NULL | | Include T if timesheets might be in batch | | **BatchNumber** | integer | NOT NULL | | | | TransferTime | timestamp | NOT NULL | | | | Note | long varchar | NULL | | | ===== Primary Key ===== * BatchType, BatchNumber ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | BatchTransfers_Number | Index | BatchNumber | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."BatchTransfers" -- Table comment: Records of transfer jobs etc. Maintained by the individual processes. -- Statement count: 4 CREATE TABLE "pears"."BatchTransfers" ( "BatchType" char(12) NOT NULL ,"BatchNumber" integer NOT NULL ,"TransferTime" timestamp NOT NULL ,"Note" long varchar NULL ,PRIMARY KEY ("BatchType" ASC,"BatchNumber" ASC) ) go COMMENT ON COLUMN "pears"."BatchTransfers"."BatchType" IS 'Include T if timesheets might be in batch' go COMMENT ON TABLE "pears"."BatchTransfers" IS 'Records of transfer jobs etc. Maintained by the individual processes.' go CREATE INDEX "BatchTransfers_Number" ON "pears"."BatchTransfers" ( "BatchNumber" ) go </code> database/tables/pears_batchtransfers.txt Last modified: 2026/08/07 19:24by 127.0.0.1