Delete

Deleting rows

1. Select

First, select a row and store it in a variable. Read more about selecting here.

my_row = MyModel.db.get(5)

2. Delete

Delete the row.

...

db.delete(my_row)

Last updated