From 39f6402b7e585f8bf979b31300d4b7717ac9d985 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 28 Jan 2016 10:14:17 -0600 Subject: [PATCH] Add sql as code block style --- postgres/pg-prefix-is-reserved-for-system-schemas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/pg-prefix-is-reserved-for-system-schemas.md b/postgres/pg-prefix-is-reserved-for-system-schemas.md index f57e7e4..8314f6a 100644 --- a/postgres/pg-prefix-is-reserved-for-system-schemas.md +++ b/postgres/pg-prefix-is-reserved-for-system-schemas.md @@ -6,7 +6,7 @@ let you do that. It reserves the `pg_` prefix for system schemas. If you try to create a schema in this way, you'll get an *unacceptable schema name* error. -``` +```sql > create schema pg_cannot_do_this; ERROR: unacceptable schema name "pg_cannot_do_this" DETAIL: The prefix "pg_" is reserved for system schemas.