mirror of
https://github.com/fergalmoran/bitchmin.git
synced 2025-12-22 09:27:53 +00:00
8 lines
272 B
Python
8 lines
272 B
Python
from app import db
|
|
|
|
|
|
class _BaseModelMixin(object):
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
created_on = db.Column(db.DateTime, server_default=db.func.now())
|
|
updated_on = db.Column(db.DateTime, server_default=db.func.now(), server_onupdate=db.func.now())
|