I use DBAccess in my project as ORM for my sqlite database. I have few models such as User, Worker etc. When I perform some actions with instances of these classes, for example:
var query = User.query().whereWithFormat("login = %@ and password
= %@", withParameters: [login, password])
I get this error in log console:
"error >> no such table: _entityRevision"
Though everything works fine and I get the right DBResultSet after fetching this query. So, what is wrong with this?