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_APPSnow takesAppCofiginstead of package name. And there is a newapps.pyfile for it. -
There is now
makemigrationandmigratecommand to create database table.