7 lines
257 B
SQL
7 lines
257 B
SQL
-- Set comment to schema: "public"
|
|
COMMENT ON SCHEMA "public" IS 'Standard public schema';
|
|
-- Add new schema named "platform"
|
|
CREATE SCHEMA "platform";
|
|
-- Set comment to schema: "platform"
|
|
COMMENT ON SCHEMA "platform" IS 'Platform schema for cache tables';
|