Update docker-compose to use postgres container (#10594)

There is no reason to use a custom image for postgres anymore as we have
migrated out pg_graphql postgres extension
This commit is contained in:
Charles Bochet
2025-02-28 20:09:30 +01:00
committed by GitHub
parent f6a5c81a55
commit cd069fb941
3 changed files with 36 additions and 11 deletions

View File

@ -7,11 +7,6 @@ import { camelToSnakeCase, performQuery } from './utils';
rawDataSource
.initialize()
.then(async () => {
await performQuery(
'CREATE EXTENSION IF NOT EXISTS "vector"',
'create extension "vector (pgvector)"',
);
await performQuery(
'CREATE SCHEMA IF NOT EXISTS "public"',
'create schema "public"',