diff --git a/meshview/models.py b/meshview/models.py index 63941a1..4c5a548 100644 --- a/meshview/models.py +++ b/meshview/models.py @@ -20,6 +20,7 @@ class Node(Base): role: Mapped[str] = mapped_column(nullable=True) last_lat: Mapped[int] = mapped_column(BigInteger, nullable=True) last_long: Mapped[int] = mapped_column(BigInteger, nullable=True) + channel: Mapped[str] class Packet(Base): @@ -36,6 +37,7 @@ class Packet(Base): ) payload: Mapped[bytes] import_time: Mapped[datetime] + channel: Mapped[str] class PacketSeen(Base):