From cf2eed7d1766807c1bcfd06205d6b3f5adb9d552 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 9 Nov 2015 22:52:18 -0600 Subject: [PATCH] Add a sql tag to the last code block. --- postgres/truncate-tables-with-dependants.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/truncate-tables-with-dependants.md b/postgres/truncate-tables-with-dependants.md index 56b952a..d2a2467 100644 --- a/postgres/truncate-tables-with-dependants.md +++ b/postgres/truncate-tables-with-dependants.md @@ -25,7 +25,7 @@ TRUNCATE TABLE; If many tables are tied together in this way and you are looking to throw all of it out, then a simpler approach is to cascade the truncation: -``` +```sql > truncate A cascade; NOTICE: truncate cascades to table "B" TRUNCATE TABLE