File size: 358 Bytes
1cfea21
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
-- Initialize PostgreSQL database
-- This script runs once when the postgres container is created.
-- The main database (pdf_rag) is created automatically by the environment variables,
-- but we can add custom schemas, extensions, or default data here if needed.

CREATE EXTENSION IF NOT EXISTS "uuid-ossp";

-- Additional setup (if any) can be placed below