From 44a8c658b1a7c5090eb91148e7dcfe11b3cea93f Mon Sep 17 00:00:00 2001 From: Nafis Faysal Date: Wed, 11 Oct 2017 09:49:00 +0600 Subject: [PATCH] Update database.md Add missing ` key on line 131 Drop table `users` --- documents/database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documents/database.md b/documents/database.md index 57c790c4..06a8b497 100644 --- a/documents/database.md +++ b/documents/database.md @@ -128,7 +128,7 @@ db.Set("gorm:table_options", "ENGINE=InnoDB").CreateTable(&User{}) // Drop model `User`'s table db.DropTable(&User{}) -// Drop table `users +// Drop table `users` db.DropTable("users") // Drop model's `User`'s table and table `products`