01-create-data-plane.sql11 lines · main
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
4CREATE DATABASE briven_data;
5\c briven_data
6CREATE EXTENSION IF NOT EXISTS vector;
7CREATE EXTENSION IF NOT EXISTS pg_trgm;
8
9\c briven_control
10CREATE EXTENSION IF NOT EXISTS vector;
11CREATE EXTENSION IF NOT EXISTS pg_trgm;