add inbound sms table

This commit is contained in:
Leo Hemsted
2017-05-22 11:26:47 +01:00
parent f7e1ccea8b
commit 4a85818c34
9 changed files with 192 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
from app import db
from app.dao.dao_utils import transactional
@transactional
def dao_create_inbound_sms(inbound_sms):
db.session.add(inbound_sms)