From d0c2e446b73c4f7962960b634312f4d8899269c2 Mon Sep 17 00:00:00 2001 From: Marcin K Date: Fri, 9 Aug 2019 18:46:57 +0200 Subject: [PATCH] Remove hint regarding Makefile As it is too much environment-specific --- TUTORIAL.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index 170eb38..e0dae79 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -87,8 +87,6 @@ Make sure to check if your database changed as expected in this case as well. (e.g. if you created a table in a migration but reverse migration did not delete it, you will encounter an error when running the forward migration again) It's also worth checking your migrations in a separate, containerized environment. You can find some tools in the end of this tutorial. -**Hint:** Most probably you are going to use to the above commands often, it's worth putting them in a Makefile of your project. - ## Optional: Run migrations within your Go app Here is a very simple app running migrations for the above configuration: ```