new app store links feature

This commit is contained in:
2026-06-25 08:24:45 +00:00
parent d9b0964f07
commit 4bb21f70ed
14 changed files with 183 additions and 2 deletions
+5
View File
@@ -98,6 +98,11 @@ class StationConfig(Base):
stream_url = Column(String(500), nullable=False, default="")
stream_metadata_url = Column(String(500), nullable=False, default="")
# Mobile app download links
play_store_icon_url = Column(String(500), nullable=False, default="")
play_store_url = Column(String(500), nullable=False, default="")
app_store_embed_html = Column(Text, nullable=False, default="")
class HistoryEntry(Base):
__tablename__ = "history_entries"