feat: implement SEO improvements, listing profiles, service images, and towns serviced

This commit is contained in:
2026-03-08 15:12:53 -04:00
parent 6c95a7d201
commit da22c4f19a
31 changed files with 1921 additions and 42 deletions

10
migrate_logo_url.sql Normal file
View File

@@ -0,0 +1,10 @@
-- Migration: Add logo_url column to listings and service_listings
-- Run against fuelprices database:
-- docker run --rm postgres:15 psql "postgres://postgres:password@192.168.1.204:5432/fuelprices" -f /path/to/this/file
-- Or inline:
-- docker run --rm postgres:15 psql "postgres://postgres:password@192.168.1.204:5432/fuelprices" \
-- -c "ALTER TABLE listings ADD COLUMN IF NOT EXISTS logo_url VARCHAR(255);" \
-- -c "ALTER TABLE service_listings ADD COLUMN IF NOT EXISTS logo_url VARCHAR(255);"
ALTER TABLE listings ADD COLUMN IF NOT EXISTS logo_url VARCHAR(255);
ALTER TABLE service_listings ADD COLUMN IF NOT EXISTS logo_url VARCHAR(255);