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.BankModulus ====== <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 ===== Contains list of valid sortcode ranges and which modulus check applies. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **BankModulusID** | char(20) | NOT NULL | | | | sortcode1 | integer | NULL | | | | sortcode2 | integer | NULL | | | | ExceptionType | char(10) | NULL | | | | ExtraMod | integer | NULL | | | | Mod1 | integer | NULL | | | | Mod2 | integer | NULL | | | | Mod3 | integer | NULL | | | | Mod4 | integer | NULL | | | | Mod5 | integer | NULL | | | | Mod6 | integer | NULL | | | | Mod7 | integer | NULL | | | | Mod8 | integer | NULL | | | | Mod9 | integer | NULL | | | | Mod10 | integer | NULL | | | | Mod11 | integer | NULL | | | | Mod12 | integer | NULL | | | | Mod13 | integer | NULL | | | | Mod14 | integer | NULL | | | | sortorder | integer | NULL | | | ===== Primary Key ===== * BankModulusID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | BankModulusSortCode | Index | sortcode1 | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."BankModulus" -- Table comment: Contains list of valid sortcode ranges and which modulus check applies. -- Statement count: 3 CREATE TABLE "pears"."BankModulus" ( "BankModulusID" char(20) NOT NULL ,"sortcode1" integer NULL ,"sortcode2" integer NULL ,"ExceptionType" char(10) NULL ,"ExtraMod" integer NULL ,"Mod1" integer NULL ,"Mod2" integer NULL ,"Mod3" integer NULL ,"Mod4" integer NULL ,"Mod5" integer NULL ,"Mod6" integer NULL ,"Mod7" integer NULL ,"Mod8" integer NULL ,"Mod9" integer NULL ,"Mod10" integer NULL ,"Mod11" integer NULL ,"Mod12" integer NULL ,"Mod13" integer NULL ,"Mod14" integer NULL ,"sortorder" integer NULL ,PRIMARY KEY ("BankModulusID" ASC) ) go COMMENT ON TABLE "pears"."BankModulus" IS 'Contains list of valid sortcode ranges and which modulus check applies.' go CREATE INDEX "BankModulusSortCode" ON "pears"."BankModulus" ( "sortcode1" ) go </code> database/tables/pears_bankmodulus.txt Last modified: 2026/08/07 19:24by 127.0.0.1