Rename to prices table

This commit is contained in:
Luke Van Seters 2021-11-18 13:56:07 -05:00
parent 023205c25b
commit f5233a17fd

View File

@ -4,7 +4,7 @@ from .base import Base
class PriceModel(Base):
__tablename__ = "usd_prices"
__tablename__ = "prices"
timestamp = Column(TIMESTAMP, nullable=False, primary_key=True)
usd_price = Column(Numeric, nullable=False)