From 6db79fd261204a436a0a17d3205742468f87e007 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 20 Mar 2016 17:45:02 -0500 Subject: [PATCH] Add sql text highlighting --- postgres/renaming-a-table.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/renaming-a-table.md b/postgres/renaming-a-table.md index 1e3a050..41e02b2 100644 --- a/postgres/renaming-a-table.md +++ b/postgres/renaming-a-table.md @@ -4,7 +4,7 @@ Using the `alter table` command in PostgreSQL, you can rename an existing table. This command will also update any references to the table such as via foreign key constraints. Just run a command like the following: -``` +```sql alter table ingredient_types rename to item_types; ```