mirror of
https://github.com/sartography/uva-covid19-testing-communicator.git
synced 2025-02-25 05:15:14 +00:00
9 lines
214 B
Python
9 lines
214 B
Python
|
from sqlalchemy import func
|
||
|
|
||
|
from communicator import db
|
||
|
|
||
|
|
||
|
class IvyFile(db.Model):
|
||
|
file_name = db.Column(db.String, primary_key=True)
|
||
|
date_added = db.Column(db.DateTime(timezone=True), default=func.now())
|