feat: add Meet Kevin SQLAlchemy models (5 tables)
This commit is contained in:
parent
8a412e6ae9
commit
8ed2e70e8f
3 changed files with 297 additions and 0 deletions
|
|
@ -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",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue