====== pears.ImageStamping ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | ImageType | char(4) | NOT NULL | | TS for timesheet, may be extended later | | LeftIndent | integer | NULL | | PDF - 72dpi possibly TIF- dont know | | TopIndent | integer | NULL | | | | FontName | char(35) | NULL | | Courier, Courier-Bold, needs testing | | FontSize | integer | NULL | | | | FontColour | integer | NULL | | use IQX General Settings | | filetype | char(4) | NOT NULL | | pdf or tif | | pretext | char(100) | NULL | | | | posttext | char(100) | NULL | | | | **ImageStampingID** | char(20) | NOT NULL | | | ===== Primary Key ===== * ImageStampingID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."ImageStamping" -- Table comment: -- Statement count: 6 CREATE TABLE "pears"."ImageStamping" ( "ImageType" char(4) NOT NULL ,"LeftIndent" integer NULL ,"TopIndent" integer NULL ,"FontName" char(35) NULL ,"FontSize" integer NULL ,"FontColour" integer NULL ,"filetype" char(4) NOT NULL ,"pretext" char(100) NULL ,"posttext" char(100) NULL ,"ImageStampingID" char(20) NOT NULL ,PRIMARY KEY ("ImageStampingID" ASC) ) go COMMENT ON COLUMN "pears"."ImageStamping"."ImageType" IS 'TS for timesheet, may be extended later' go COMMENT ON COLUMN "pears"."ImageStamping"."LeftIndent" IS 'PDF - 72dpi possibly TIF- dont know' go COMMENT ON COLUMN "pears"."ImageStamping"."FontName" IS 'Courier, Courier-Bold, needs testing' go COMMENT ON COLUMN "pears"."ImageStamping"."FontColour" IS 'use IQX General Settings' go COMMENT ON COLUMN "pears"."ImageStamping"."filetype" IS 'pdf or tif' go