From 64172873e41ac418fad7bcbd4494a7fa1553de24 Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Sun, 8 Nov 2015 12:39:49 -0800 Subject: [PATCH] Explanation about split schemas --- schema-templates/basic-auth.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/schema-templates/basic-auth.sql b/schema-templates/basic-auth.sql index 9026c0d3f..b2cbc8181 100644 --- a/schema-templates/basic-auth.sql +++ b/schema-templates/basic-auth.sql @@ -5,6 +5,10 @@ begin; create extension if not exists pgcrypto; create extension if not exists "uuid-ossp"; + +-- We put things inside the basic_auth schema to hide +-- them from public view. Certain public procs/views will +-- refer to helpers and tables inside. create schema if not exists basic_auth; -------------------------------------------------------------------------------