Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用SQLite数据库连接模型时遇到问题laravel 4。创建模式并运行migrate:install、迁移后,(db:seed) 一切正常。但是如果我出于某种原因删除了 sqlite 文件,我将无法重新创建该文件。migrate:install 和 migrate 也可以在没有任何警告的情况下运行,但应用程序不会创建文件。我究竟做错了什么?
SQLite
laravel 4
migrate:install
Laravel 不负责创建数据库文件,当它尝试连接它们时它们应该存在,但是......如果数据库不存在,PDO_SQLITE 应该创建数据库。然后,如果它没有创建,您应该检查您的文件夹权限和网络服务器日志文件。