Disallow update/delete without conditions
Major
.update()
and.delete()
manipulation methods throw errors now if called without conditions. If this is needed.updateAll()
and.deleteAll()
are available (#46)
From:
sql.delete('...')
To:
sql.deleteAll('...')