browser-go-api/models/Branch.py

6 lines
150 B
Python
Raw Normal View History

2019-10-02 03:09:46 +00:00
from ..app import db, ma
class Branch(db.Model):
__table_args__ = {'extend_existing': True}
id = db.Column(db.Integer, primary_key=True)