From f6ab92fc248ca6faf408465164a0b5c5d8dec1bf Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Tue, 25 Aug 2026 09:43:56 -0400 Subject: [PATCH] add vector ext for agentic memory --- salt/postgres/files/init-db.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/salt/postgres/files/init-db.sh b/salt/postgres/files/init-db.sh index 4d65b0c97..08488fc29 100644 --- a/salt/postgres/files/init-db.sh +++ b/salt/postgres/files/init-db.sh @@ -29,6 +29,8 @@ psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-E -- revoking CONNECT closes the soft edge entirely. REVOKE CONNECT ON DATABASE "$POSTGRES_DB" FROM PUBLIC; GRANT CONNECT ON DATABASE "$POSTGRES_DB" TO "$SO_POSTGRES_USER"; + + CREATE EXTENSION IF NOT EXISTS vector; EOSQL # Bootstrap the Telegraf metrics database. Per-minion roles + schemas are