hello
I have two tables, cars and invoices. I want that when I delete a car, it automatically deletes the invoices related to that car. Please note that I am using Glide tables (free version).
Thanks
hello
I have two tables, cars and invoices. I want that when I delete a car, it automatically deletes the invoices related to that car. Please note that I am using Glide tables (free version).
Thanks
Create a multiple relation in the Cars table linking the car to the invoices. Then set up your Delete action as a custom action that first deletes all rows in the relation, followed by deleting the car row.