-- docker/db-init/01_seed.sql.example -- -- Template only. The real seed lives under tests/fixtures/seed-db.sql and is -- mounted into the db service via docker-compose.test.yml when running -- integration tests. -- Example: insert a single googlemaps tile row so a smoke connection test -- can verify the schema is in place. -- INSERT INTO tiles (zoom_level, tile_x, tile_y, latitude, longitude, -- tile_size_meters, tile_size_pixels, capture_timestamp, -- source) -- VALUES (15, 0, 0, 50.0, 30.0, 300.0, 1024, now(), 'googlemaps');