Migration commit from heyvince.co to heyvince.ca

This commit is contained in:
vgoineau
2024-05-03 09:24:48 -04:00
commit 2c898da04f
24 changed files with 679 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from sqlalchemy import Column, Integer
from sqlalchemy.orm import sessionmaker
import pandas as pd
class DFTMixin():
#TODO: add repeatable field for slow dim etc.
Pk = Column("Pk", Integer, primary_key=True)
batch_id = Column("BatchID", Integer, nullable=True)