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 --- yaksh/migrations/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 yaksh/migrations/__init__.py (limited to 'yaksh/migrations/__init__.py') diff --git a/yaksh/migrations/__init__.py b/yaksh/migrations/__init__.py new file mode 100644 index 0000000..e69de29 -- cgit