Django and the curious case of the disappearing materialized view
A project I’ve been working on depends on a number of materialized views, a nifty feature of Postgres which is somewhere between a traditional view and a table.
@CodenameTim No, all of the views we work with are created by Postgres consultants in SQL. There's some pretty wild stuff going on which didn't fit into what those Django view libraries were able to provide the last time I looked.
@markush@CodenameTim The column is being removed from a managed model. It's a view which uses that column that disappears without warning. I really should log an issue in Django about this…