I am currently trying to migrate my db to my project but I am getting this error but unsure of how to resolve this. It is a laravel project version 7.3 and I am using the new app feature on DigitalOcean.
invalid value for parameter "client_encoding": "utf8mb4"
(SQL: select * from information_schema.tables where table_schema = public and table_name = migrations and table_type = 'BASE TABLE').
Please can anyone help?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
If you are using the DigitalOcean App Platform along with a Dev Database, keep in mind that the Dev Database is PostgreSQL and not MySQL.
What you would need to do is either to create a separate MySQL Managed Database Cluster or specify in your environment variables that the
DB_CONNECTION
aspgsql
.Here is a good video demo on how to deploy a Laravel App to the DigitalOcean App Platform:
Hope that this helps! Regards, Bobby
Hi @emegwalio,
This indeed looks like Postgresql is being used as Database instead of MySql.
You have two options the way I see it. The first one is in your
config/database.php
file, edit theNotice the pgsql at the end.
Or the second option is to set the DB_CONNECTION in .env as pgsql just as already mentioned.