First Major Model - Building SaaS #163
Building a SaaS app's core data model in Django, including the Entry model, admin setup, and automated testing.
Building a SaaS app's core data model in Django, including the Entry model, admin setup, and automated testing.
A Django tutorial episode explaining how to safely accept and manage user-uploaded files using FileField and ImageField.
This episode explores the structure of a Django application, explaining its core files and their purposes within a project.
Learn how Django uses models and migrations to store and manage data in a relational database.
A guide on deploying Django model changes to production using migrations, covering a simple method and best practices.
A guide to creating and using abstract base classes in Django to reduce code repetition for common timestamp fields like 'added' and 'edited'.
A technical guide on designing robust Django models for a bank account system, covering constraints, logging, and best practices.
A tutorial covering Backbone.js basics including Events, Models, and simple data-binding with practical code examples.
A proposal for improving Django's application architecture with 'Application Objects' to solve issues like model extensibility and GenericForeignKey misuse.
A technical deep dive into Django's internal model system, explaining the add_to_class and contribute_to_class methods.
A technical deep dive into how Django models work internally, focusing on the ModelBase metaclass and the class creation process.