In this blog, we will discuss an approach to use the same database table for CRUD operations from different Django applications. Illustrating the basic structure of Django app below: Generally, In Django each
The process of implementing changes to the database schema is known as migration. For each model, Django creates a migration file in the migration folder. These are called auto migrations. We can also
Middlewares in Django are the framework of hooks into its request/response processing. Django provides various built-in middlewares and flexibility to write our own middleware. There are just 2 simple steps to implement