无法使用Laravel / Homestead迁移数据库

时间:2018-04-17 12:28:10

标签: php laravel homestead

我正在使用Homestead参与Laravel项目。

Homestead数据库在使用时工作正常。我可以阅读,编辑,删除......

但是,当我尝试在终端中使用<script src="js/jquery.js" type="text/javascript"></script> <script src="js/jquery.dataTables.js" type="text/javascript"></script> <script src='https://code.jquery.com/jquery-1.12.4.js'></script> <script src='https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js' type="text/javascript"></script> <script src='https://cdn.datatables.net/select/1.2.5/js/dataTables.select.min.js' type="text/javascript"></script> <script src='https://cdn.datatables.net/buttons/1.5.1/js/dataTables.buttons.min.js' type="text/javascript"></script> <script src='https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js' type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { const table = $('#example').DataTable({ stateSave: true }); // Setup - add a text input to each footer cell $('#example tfoot th').each( function () { var title = $(this).text(); $(this).html( '<input type="text" placeholder="Search '+title+'" />' ); } ); // Apply the search table.columns().every( function () { var that = this; $( 'input', this.footer() ).on( 'keyup change', function () { if ( that.search() !== this.value ) { that .search( this.value ) .draw(); } } ); } ); } ); </script> 时,我收到此错误:

php artisan:migrate

所以我的应用程序可以访问数据库,但不能访问终端。

任何帮助?

2 个答案:

答案 0 :(得分:2)

php artisan config:clear

运行上述命令将清除配置缓存文件,因此laravel将从.env文件中读取新数据。

答案 1 :(得分:1)

确保您的数据库凭据。

在.env文件中配置这些凭据

完成更改后重新启动服务器。