Laravel: Run migrations on another database

前端 未结 8 2079
有刺的猬
有刺的猬 2020-12-29 23:15

In my app every user has its own database that created when user registered. Connection and database data (database name, username, password) are saved in a table in default

8条回答
  •  抹茶落季
    2020-12-29 23:55

    If you place database config on the database.php file, this can help you:

    php artisan migrate --database=**otherDatabase**
    

提交回复
热议问题