mirror of
https://github.com/StefBuwalda/dashboard_test.git
synced 2025-10-30 19:29:58 +00:00
7 lines
149 B
Python
7 lines
149 B
Python
from app import db
|
|
|
|
|
|
class logs(db.Model):
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
dateCreated = db.Column(db.DateTime, nullable=False)
|