We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This seems to not working anymore with lucky 0.26
alias Double = Float64 class Agency < BaseModel column latitude : Double? column longitude : Double? end
The error:
PG::ResultSet#read returned a Float64. A (PG::Numeric | Nil) was expected.
I see here 8bf9a1f#diff-7388ecacebfb91d79a5f8b87e42556bdbc805add6ebe0c5005ad7b180ba8efddR7 an update of the ColumnType
Originally posted by @brunto in #200 (comment)
The text was updated successfully, but these errors were encountered:
I think simply update the ColumnType should work: alias ColumnType = Float64 | ::PG::Numeric
ColumnType
alias ColumnType = Float64 | ::PG::Numeric
Sorry, something went wrong.
Completed by #637
No branches or pull requests
This seems to not working anymore with lucky 0.26
The error:
I see here 8bf9a1f#diff-7388ecacebfb91d79a5f8b87e42556bdbc805add6ebe0c5005ad7b180ba8efddR7 an update of the ColumnType
Originally posted by @brunto in #200 (comment)
The text was updated successfully, but these errors were encountered: