mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-19 06: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]
|
||||
rating_class: Mapped[int]
|
||||
score: Mapped[int]
|
||||
pure: Mapped[int]
|
||||
far: Mapped[int]
|
||||
lost: Mapped[int]
|
||||
date: Mapped[int]
|
||||
max_recall: Mapped[int]
|
||||
r10_clear_type: Mapped[int]
|
||||
shiny_pure: Mapped[int]
|
||||
pure: Mapped[Optional[int]]
|
||||
far: Mapped[Optional[int]]
|
||||
lost: Mapped[Optional[int]]
|
||||
date: Mapped[Optional[int]]
|
||||
max_recall: Mapped[Optional[int]]
|
||||
r10_clear_type: Mapped[Optional[int]]
|
||||
shiny_pure: Mapped[Optional[int]]
|
||||
potential: Mapped[float]
|
||||
|
||||
__table__ = create_view(
|
||||
@ -107,13 +107,13 @@ class Best(ScoresBase):
|
||||
song_id: Mapped[str]
|
||||
rating_class: Mapped[int]
|
||||
score: Mapped[int]
|
||||
pure: Mapped[int]
|
||||
far: Mapped[int]
|
||||
lost: Mapped[int]
|
||||
date: Mapped[int]
|
||||
max_recall: Mapped[int]
|
||||
r10_clear_type: Mapped[int]
|
||||
shiny_pure: Mapped[int]
|
||||
pure: Mapped[Optional[int]]
|
||||
far: Mapped[Optional[int]]
|
||||
lost: Mapped[Optional[int]]
|
||||
date: Mapped[Optional[int]]
|
||||
max_recall: Mapped[Optional[int]]
|
||||
r10_clear_type: Mapped[Optional[int]]
|
||||
shiny_pure: Mapped[Optional[int]]
|
||||
potential: Mapped[float]
|
||||
|
||||
__table__ = create_view(
|
||||
|
Loading…
x
Reference in New Issue
Block a user