open-law/app/models/utils.py

14 lines
276 B
Python
Raw Normal View History

2023-04-20 13:10:16 +00:00
from app import db
class ModelMixin(object):
def save(self, commit=True):
# Save this model to the database.
db.session.add(self)
if commit:
db.session.commit()
return self
# Add your own utility classes and functions here.