browser-go-api/models/Branch.py
2019-10-01 20:09:46 -07:00

6 lines
No EOL
150 B
Python

from ..app import db, ma
class Branch(db.Model):
__table_args__ = {'extend_existing': True}
id = db.Column(db.Integer, primary_key=True)