
Django Models and Administration Features
Django gives us a robust set of tools for our database and administration of our application. This tutorial provides an introduction to Django models and those tools. We will look at how to create and modify our application database and configure security quickly. Django Models Our tour of Django begins with the models and how they make it easy to create a database and maintain them. The definition of a table is relatively easy to learn, and we get a command-line option for migrating changes to our DB. That eliminates one of the common challenges to modern development which is, tracking changes to the database. We can craft build scripts and version control those. However, Django automates those change scripts... Read more