Tổng đài tư vấn: 033 688 8648
Hotline: 039 511 6390
Laravel chạy migrations error : SQLSTATE[42S02]: Base table or view not found: 1146 Table
Cách khắc phục. Mở file migrations sửa
Schema::table('voucher_renew_expired_histories', function (Blueprint $table) {
//
});
Thành
Schema::create('voucher_renew_expired_histories', function (Blueprint $table) {
//
});
Chúc bạn thành công.