From 1a50fb3407550869cf988b307f24af62ad3e57e7 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Mon, 13 Mar 2017 12:58:17 +0530 Subject: Added migrations folder to the app. This required because when we do migration for the first time, initial migrations will be created only if migrations folder is present in the installed app. Otherwise, running makemigrations will not detect the initial migrations for that app. Though we can exclusively specify the app name as the argument to the makemigrations command. But did this so that by default apply migrations. Note: Removed migrations from .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 38a5ebb..e14b151 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,6 @@ apache/* *.swo *.db-journal *.db -migrations wsgi.log *.sqlite3 data/ -- cgit