mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 23:41:17 -05:00
7 lines
126 B
Python
7 lines
126 B
Python
|
|
from app import db
|
||
|
|
|
||
|
|
|
||
|
|
def update_monthly_billing(monthly_billing):
|
||
|
|
db.session.add(monthly_billing)
|
||
|
|
db.session.commit()
|