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;