From b4769a4221b77ab4a01a7b9ebc98ca2fb8164101 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 4 Jan 2016 20:07:28 -0600 Subject: [PATCH] Add SQL syntax highlighting to the code block. --- postgres/restarting-sequences-when-truncating-tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/restarting-sequences-when-truncating-tables.md b/postgres/restarting-sequences-when-truncating-tables.md index f1a5b6c..16d3339 100644 --- a/postgres/restarting-sequences-when-truncating-tables.md +++ b/postgres/restarting-sequences-when-truncating-tables.md @@ -10,6 +10,6 @@ restart it manually or you can tell `truncate` to do it for you. By appending `restart identity` to the end of a `truncate` statement, Postgres will make sure to restart any associated sequences at `1`. -``` +```sql truncate pokemons, trainers, pokemons_trainers restart identity; ```