#273 Database upgrade fails with readonly plugin database
Closed: Fixed Opened by puiterwijk.

We handle the case of a readonly adminconfig database correctly, but if we have a readonly plugin database we get into a raise NotImplementedError.
This is because the plugin.py enable function performs upgrade_database(), which tries to get the schema version (which a readonly database doesn't have), which calls table.create, which results in a NotImplementedError.


Commit e4113e37 fixes this issue

Metadata