-- Optional database initialization script -- This file will be executed when the PostgreSQL container starts for the first time -- Create extensions if needed -- CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; -- You can add any initial database setup here -- For example, creating additional users, setting permissions, etc. -- Note: Your FastAPI app with Alembic will handle the actual table creation -- This file is mainly for any PostgreSQL-specific setup