01-create-data-plane.sql 374 B

1234567891011
  1. -- Postgres init script — runs once on first boot of the postgres container.
  2. -- Identical to the dokploy template; coolify reads from this same path.
  3. CREATE DATABASE briven_data;
  4. \c briven_data
  5. CREATE EXTENSION IF NOT EXISTS vector;
  6. CREATE EXTENSION IF NOT EXISTS pg_trgm;
  7. \c briven_control
  8. CREATE EXTENSION IF NOT EXISTS vector;
  9. CREATE EXTENSION IF NOT EXISTS pg_trgm;