Files
notifications-api/app/dao/monthly_billing_dao.py

7 lines
126 B
Python
Raw Normal View History

from app import db
def update_monthly_billing(monthly_billing):
db.session.add(monthly_billing)
db.session.commit()