From de5096b3c70fdcc7c457f6de33bc7ccdd6a389c5 Mon Sep 17 00:00:00 2001 From: max/sooulix Date: Sun, 16 Aug 2026 11:08:11 +0200 Subject: [PATCH] bootstrap_files --- bootstrap/00-create_schemas.sql | 3 +++ bootstrap/01-create_extensions.sql | 1 + 2 files changed, 4 insertions(+) create mode 100644 bootstrap/00-create_schemas.sql create mode 100644 bootstrap/01-create_extensions.sql diff --git a/bootstrap/00-create_schemas.sql b/bootstrap/00-create_schemas.sql new file mode 100644 index 0000000..84d8759 --- /dev/null +++ b/bootstrap/00-create_schemas.sql @@ -0,0 +1,3 @@ +CREATE SCHEMA domain; +CREATE SCHEMA identity; +CREATE SCHEMA permission; diff --git a/bootstrap/01-create_extensions.sql b/bootstrap/01-create_extensions.sql new file mode 100644 index 0000000..328a8c9 --- /dev/null +++ b/bootstrap/01-create_extensions.sql @@ -0,0 +1 @@ +CREATE EXTENSION pgcrypto;