diff options
author | prathamesh | 2017-03-13 12:58:17 +0530 |
---|---|---|
committer | prathamesh | 2017-03-13 12:58:17 +0530 |
commit | 1a50fb3407550869cf988b307f24af62ad3e57e7 (patch) | |
tree | 7b5c4106f4d1c180474631ed96799a6b733496fa /.gitignore | |
parent | ce7238aef6d5080d8f7ea79b96c9569bf191f0b8 (diff) | |
download | online_test-1a50fb3407550869cf988b307f24af62ad3e57e7.tar.gz online_test-1a50fb3407550869cf988b307f24af62ad3e57e7.tar.bz2 online_test-1a50fb3407550869cf988b307f24af62ad3e57e7.zip |
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
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -38,7 +38,6 @@ apache/* *.swo *.db-journal *.db -migrations wsgi.log *.sqlite3 data/ |