SQLite doesn't have … OR REPLACE … syntax for view creation - instead you have to do DROP VIEW IF EXISTS foo as a separate statement.
I intended to try adding this myself, but ran into #9 before I even really got started. The actual changes in views.py are pretty trivial, but having to first deal with the existing test failures is a bit discouraging.
SQLite doesn't have
… OR REPLACE …syntax for view creation - instead you have to doDROP VIEW IF EXISTS fooas a separate statement.I intended to try adding this myself, but ran into #9 before I even really got started. The actual changes in views.py are pretty trivial, but having to first deal with the existing test failures is a bit discouraging.