testing the test database
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 21s

This commit is contained in:
2025-11-21 19:28:16 -08:00
parent a63bb2f68c
commit e86f38fa66
3 changed files with 16 additions and 19 deletions

View File

@@ -1,13 +1,4 @@
-- ============================================================================
-- PART 1: EXTENSIONS
-- ============================================================================
-- Enable necessary PostgreSQL extensions.
-- postgis: For storing and querying geographic data (store locations).
-- pg_trgm: For trigram-based fuzzy string matching (improving item searches).
CREATE EXTENSION IF NOT EXISTS postgis;
CREATE EXTENSION IF NOT EXISTS pg_trgm;
CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; -- For generating UUIDs
-- ============================================================================
-- PART 2: TABLES
-- ============================================================================