11 lines
333 B
Python
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
|