Couple years ago, I wrote a simple Events and Signin management app using django 1.6. It was fun to write and it worked really well. Just recently I have to write another quick simple CRM webapp and I decided to use Django again, but they current release is 1.9 now and I quickly found few differences.
-
The
INSTALLED_APPS
now takesAppCofig
instead of package name. And there is a newapps.py
file for it. -
There is now
makemigration
andmigrate
command to create database table.