*** MirrorSetup.sql Mon Aug 11 10:50:34 2003 --- MirrorSetup.sql.new Mon Aug 11 10:53:14 2003 *************** *** 43,45 **** --- 43,60 ---- FOREIGN KEY ("LastSeqId") REFERENCES "Pending" ("SeqId") ON UPDATE CASCADE ON DELETE CASCADE ); + + + CREATE TABLE SpecialTables ( + tblname varchar(100) PRIMARY KEY, + siteidkeyname varchar(20) + ); + /* + IMPORTANT NOTE: + =============== + + Remember to specify the tblname in SpecialTables in its full path form, + i.e. containing the schema too. + E.g. if our table name is called "customers", and the schema is "public" then + we enter in tblname column the value: "public"."customers". + */