我无法运行任何php artisan命令,它始终显示相同的错误。我知道它说什么,但我无法执行php artisan migration来制作该表。我使用的是VPS Ubuntu 16.04。一切都能在我的本地主机上正常运行,仅当在vps上部署应用程序时才会出现此问题
错误是:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'cv.contacts' doesn't exist (SQL: select * from `contacts` where `contacts`.`deleted_at` is null)
我的路线:
Route::get('/', 'HomeController@index')->name('home');
Route::post('/', 'ContactController@store')->name('contact.store');
//eng
Route::get('/en', 'HomeController@index_en')->name('home.en');
Route::post('/en', 'ContactController@store')->name('contact.store');