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
Hello, I tried to generate a config file with config:generate but I got this error:
config:generate
In AbstractPlatform.php line 454: Unknown database type _int4 requested, Doctrine\DBAL\Platforms\PostgreSQL100Platform may not support it.
In AbstractPlatform.php line 454:
Unknown database type _int4 requested, Doctrine\DBAL\Platforms\PostgreSQL100Platform may not support it.
As you can see, _int4 is not recognized as a valid column type. In Symfony you can fix this configuring mapping_types.
_int4
mapping_types
# config/packages/doctrine.yaml doctrine: dbal: mapping_types: _int4: string
Does neuralizer have something like this? Thank you.
The text was updated successfully, but these errors were encountered:
🦗
Sorry, something went wrong.
Hello, sorry for the delay, I didn't get any notification.
It's documented here : https://github.com/edyan/neuralyzer#custom-application-logic
No branches or pull requests
Hello, I tried to generate a config file with
config:generate
but I got this error:As you can see,
_int4
is not recognized as a valid column type. In Symfony you can fix this configuringmapping_types
.Does neuralizer have something like this? Thank you.
The text was updated successfully, but these errors were encountered: