17 Jun 2011 Database views will make their appearance in the upcoming Django 1.1 release. Having used them for my latest project, there are a few gotchas when it comes to using them. In our project, we were using South for our database migrations. To ensure our database views were created, we added them to a south migration using db.execute. This worked very well for 90% of our use case. The biggest hurdle for this ended up being testing. When syncdb runs, your unmanaged models (ie: database ...