feat: add Meet Kevin SQLAlchemy models (5 tables)

This commit is contained in:
Viktor Barzin 2026-05-21 19:19:33 +00:00
parent 8a412e6ae9
commit 8ed2e70e8f
3 changed files with 297 additions and 0 deletions

View file

@ -16,6 +16,13 @@ from shared.models.learning import LearningAdjustment, TradeOutcome
from shared.models.auth import User, UserCredential
from shared.models.timeseries import MarketData, PortfolioSnapshot, StrategyMetric
from shared.models.fundamentals import Fundamentals
from shared.models.meet_kevin import (
KevinChannel,
KevinVideo,
KevinTranscript,
KevinAnalysis,
KevinStockMention,
)
__all__ = [
"Base",
@ -44,4 +51,10 @@ __all__ = [
"StrategyMetric",
# Fundamentals
"Fundamentals",
# Meet Kevin
"KevinChannel",
"KevinVideo",
"KevinTranscript",
"KevinAnalysis",
"KevinStockMention",
]