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
Laravel internal comes out-of-the-box with a definition for PostgreSQL database. The key defined in their config/database.php is pgsql
config/database.php
pgsql
In our .environment file, we define export DB_SCHEME="postgresql". It should be pgsql to match Laravel convention.
.environment
export DB_SCHEME="postgresql"
export DB_SCHEME="pgsql" # Set Laravel-specific environment variables export DB_CONNECTION="$DB_SCHEME"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Laravel internal comes out-of-the-box with a definition for PostgreSQL database. The key defined in their
config/database.php
ispgsql
In our
.environment
file, we defineexport DB_SCHEME="postgresql"
. It should bepgsql
to match Laravel convention.The text was updated successfully, but these errors were encountered: