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 | |
| 4 | CREATE DATABASE briven_data; |
| 5 | \c briven_data |
| 6 | CREATE EXTENSION IF NOT EXISTS vector; |
| 7 | CREATE EXTENSION IF NOT EXISTS pg_trgm; |
| 8 | |
| 9 | \c briven_control |
| 10 | CREATE EXTENSION IF NOT EXISTS vector; |
| 11 | CREATE EXTENSION IF NOT EXISTS pg_trgm; |