Files
terra-view/app/slm/models.py

11 lines
333 B
Python

"""
Sound Level Meter feature module models
"""
from sqlalchemy import Column, String, Integer, Boolean, DateTime, Float
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
# TODO: When we split databases, SLM-specific models will go here
# For now, SLM data is in the shared seismo_fleet.db database