10 lines
276 B
Python
10 lines
276 B
Python
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)
|