Skip to content

Commit

Permalink
Fix Float64 type
Browse files Browse the repository at this point in the history
  • Loading branch information
zw963 committed May 4, 2024
1 parent c199336 commit 1298f6c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/models/university.cr
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ class University < BaseModel
column score_2021_max : Int32?
column score_2020_max : Int32?

column ranking_2023_min : Int32?
column ranking_2022_min : Int32?
column ranking_2021_min : Int32?
column ranking_2020_min : Int32?
column ranking_2023_min : Float64?
column ranking_2022_min : Float64?
column ranking_2021_min : Float64?
column ranking_2020_min : Float64?

column ranking_2023_max : Int32?
column ranking_2022_max : Int32?
column ranking_2021_max : Int32?
column ranking_2020_max : Int32?
column ranking_2023_max : Float64?
column ranking_2022_max : Float64?
column ranking_2021_max : Float64?
column ranking_2020_max : Float64?

belongs_to province : Province
belongs_to city : City
Expand Down

0 comments on commit 1298f6c

Please sign in to comment.