Laravel 5 with Postgres SQL

前端 未结 7 1442
深忆病人
深忆病人 2020-12-31 02:56

I’m working on Laravel 5 with postgres as database. I’ve configured postgres 9.4 and pgAdmin III and these are working normally. When I try to run migrate it is giving me e

7条回答
  •  旧巷少年郎
    2020-12-31 03:36

    You have to make DB related changes in

    1. config/database.php
    2. .env file

    and other settings in

    • php.ini settings

    If you are still getting error, then clear cache and config

    php artisan cache:clear
    php artisan config:clear
    

    It should work now!

提交回复
热议问题