Create a new table to warehouse the monthly billing numbers

This commit is contained in:
Rebecca Law
2017-07-13 17:22:11 +01:00
parent 6d1ec3eb44
commit 4b05c32b62
4 changed files with 92 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
from app import db
def update_monthly_billing(monthly_billing):
db.session.add(monthly_billing)
db.session.commit()