Files
zuevav f4bca8449e main
2026-05-20 19:33:02 +03:00

18 lines
678 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- ZBrain Dev Postgres Init
-- Создаёт расширения и тестовые БД для локальной разработки
CREATE EXTENSION IF NOT EXISTS vector;
CREATE EXTENSION IF NOT EXISTS pg_trgm;
CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
-- Тестовая БД для gbrain
CREATE DATABASE gbrain_dev OWNER zbrain;
\c gbrain_dev
CREATE EXTENSION IF NOT EXISTS vector;
CREATE EXTENSION IF NOT EXISTS pg_trgm;
CREATE EXTENSION IF NOT EXISTS pgcrypto;
\c brainhub_dev
-- В brainhub_dev расширения уже созданы выше, миграции прокатятся через приложение