Как решить эту проблему?
ошибка:
SQLSTATE [42S02]: Базовая таблица или представление не найдены: 1146 Таблица 'softwareproject.o_r_f_o_l_s' не существует (SQL: вставить в `o_r_f_o_l_s` (` регион`, `user_id`,` updated_at`, `made_at` ) значения (4165dsF, 3, 2018-09-06 20:33:58, 2018-09-06 20:33:58))
моя миграция:
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateORFOLsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('o_r_f_o_ls', function (Blueprint $table) { $table->increments('ORFOLId'); $table->string('region'); $table->integer('user_id')->unsigned(); $table->foreign('user_id')->references('userId')->on('all_users'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('o_r_f_o_ls'); } }
неосторожная ошибка ..
according to the model, table name should change as o_r_f_o_l_s.`
ошибка - имя таблицы. Я полагаю, это поможет некоторым пользователям решить этот вопрос.