Deleting rows
First, select a row and store it in a variable. Read more about selecting here.
my_row = MyModel.db.get(5)
Delete the row.
... db.delete(my_row)
Last updated 5 years ago