Re: [web2py] on delete event callbacks and versioned tables

2018-03-30 Thread Manuele Pesenti
Il 29/03/18 21:13, Richard Vézina ha scritto: > They are intent to be used to specify something before or after the > delete... I mean even if there is no "pure" deletion occuring your > record doesn't exist anymore for the end user once you "deleted" it > even if versioning mechanism keep trace of

Re: [web2py] on delete event callbacks and versioned tables

2018-03-29 Thread Richard Vézina
They are intent to be used to specify something before or after the delete... I mean even if there is no "pure" deletion occuring your record doesn't exist anymore for the end user once you "deleted" it even if versioning mechanism keep trace of it for the purpose of the audit trail integrity... D

[web2py] on delete event callbacks and versioned tables

2018-03-29 Thread Manuele Pesenti
Are actually _before_delete and _after_delete callbacks called on record delete event even if on versioned tables? I mean on versioned tables records are just updated from is_active True to False and not really deleted... right? So what is in thees cases the called list of callback function?