-
Notifications
You must be signed in to change notification settings - Fork 0
1.5.6.4 Hapus Data
David Rigan edited this page Feb 13, 2020
·
1 revision
Database session memiliki delete() method. Semisal kamu akan menghapus Moderator role dari database:
>>> db.session.delete(mod_role)
>>> db.session.commit()Inget iya, setiap melakukan add() dan delete() semuanya harus di commit() untuk perubahan di database.
Referensi :
- Miguel Grinberg - Flask Web Development, Developing Web Applications with Python