====== pears.ExportOptions ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== Description ===== Stores filesname and paths for payroll and invoice exports ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **pk** | integer | NOT NULL | | | | Pay | char(20) | NULL | | | | PayExportFolder | char(255) | NULL | | | | PayExportScript | char(255) | NULL | | | | Perm | char(20) | NULL | | | | PermExportFolder | char(255) | NULL | | | | PermExportScript | char(255) | NULL | | | | ISLSalesInvoice | char(20) | NULL | | | | ISLExportFolder | char(255) | NULL | | | | ISLExportScript | char(255) | NULL | | | ===== Primary Key ===== * pk ===== 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"."ExportOptions" -- Table comment: Stores filesname and paths for payroll and invoice exports -- Statement count: 2 CREATE TABLE "pears"."ExportOptions" ( "pk" integer NOT NULL ,"Pay" char(20) NULL ,"PayExportFolder" char(255) NULL ,"PayExportScript" char(255) NULL ,"Perm" char(20) NULL ,"PermExportFolder" char(255) NULL ,"PermExportScript" char(255) NULL ,"ISLSalesInvoice" char(20) NULL ,"ISLExportFolder" char(255) NULL ,"ISLExportScript" char(255) NULL ,PRIMARY KEY ("pk" ASC) ) go COMMENT ON TABLE "pears"."ExportOptions" IS 'Stores filesname and paths for payroll and invoice exports' go