By emegwalio
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!
Accepted Answer
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
as pgsql
.
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 the
'default' => env('DB_CONNECTION', 'pgsql')
Notice the pgsql at the end.
Or the second option is to set the DB_CONNECTION in .env as pgsql just as already mentioned.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.