2 -- try to start with a single table for all placings
9 DROP TABLE IF EXISTS #PFX#bin5_places_mtime;
10 CREATE TABLE #PFX#bin5_places_mtime (
14 INSERT INTO #PFX#bin5_places_mtime (code, mtime) VALUES (0, now());
16 DROP TABLE IF EXISTS #PFX#bin5_places;
17 CREATE TABLE #PFX#bin5_places (
20 ucode integer REFERENCES #PFX#users (code) ON DELETE cascade ON UPDATE cascade,