mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-21 15:00:18 +00:00
fix: optional columns
This commit is contained in:
parent
fe393ff95c
commit
73fd563de6
@ -46,13 +46,13 @@ class Calculated(ScoresBase):
|
|||||||
song_id: Mapped[str]
|
song_id: Mapped[str]
|
||||||
rating_class: Mapped[int]
|
rating_class: Mapped[int]
|
||||||
score: Mapped[int]
|
score: Mapped[int]
|
||||||
pure: Mapped[int]
|
pure: Mapped[Optional[int]]
|
||||||
far: Mapped[int]
|
far: Mapped[Optional[int]]
|
||||||
lost: Mapped[int]
|
lost: Mapped[Optional[int]]
|
||||||
date: Mapped[int]
|
date: Mapped[Optional[int]]
|
||||||
max_recall: Mapped[int]
|
max_recall: Mapped[Optional[int]]
|
||||||
r10_clear_type: Mapped[int]
|
r10_clear_type: Mapped[Optional[int]]
|
||||||
shiny_pure: Mapped[int]
|
shiny_pure: Mapped[Optional[int]]
|
||||||
potential: Mapped[float]
|
potential: Mapped[float]
|
||||||
|
|
||||||
__table__ = create_view(
|
__table__ = create_view(
|
||||||
@ -107,13 +107,13 @@ class Best(ScoresBase):
|
|||||||
song_id: Mapped[str]
|
song_id: Mapped[str]
|
||||||
rating_class: Mapped[int]
|
rating_class: Mapped[int]
|
||||||
score: Mapped[int]
|
score: Mapped[int]
|
||||||
pure: Mapped[int]
|
pure: Mapped[Optional[int]]
|
||||||
far: Mapped[int]
|
far: Mapped[Optional[int]]
|
||||||
lost: Mapped[int]
|
lost: Mapped[Optional[int]]
|
||||||
date: Mapped[int]
|
date: Mapped[Optional[int]]
|
||||||
max_recall: Mapped[int]
|
max_recall: Mapped[Optional[int]]
|
||||||
r10_clear_type: Mapped[int]
|
r10_clear_type: Mapped[Optional[int]]
|
||||||
shiny_pure: Mapped[int]
|
shiny_pure: Mapped[Optional[int]]
|
||||||
potential: Mapped[float]
|
potential: Mapped[float]
|
||||||
|
|
||||||
__table__ = create_view(
|
__table__ = create_view(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user