Hello, I wanted to ask about triggers on delete ev...
# help
t
Hello, I wanted to ask about triggers on delete event. Is there a way to use something like "new" keyword for removed row? It seems that if I'm using
new
in function triggered by on delete trigger, it's not working properly. Thanks for help 🙂
n
Hello @Tomasz SzczuciƄski! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
v
You can access the row via the
old
variable
t
Working, Thanks!!!
h
Is the old variable also accesible on the update triggered event?
v
Yes old refers to the state of the row before the update
h
Thank you so much!