skip to Main Content

Laravel: Getting 'SQLSTATE[HY000]: General error: 1 no such table: webServiceLogs' when trying to store in database – Phpmyadmin

I have set up a migration file: use IlluminateDatabaseMigrationsMigration; use IlluminateDatabaseSchemaBlueprint; use IlluminateSupportFacadesSchema; class LogggingTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::connection('mysql2')->create('webServiceLogs', function (Blueprint $table) { $table->bigIncrements('id'); $table->timestamps(); $table->string('query');…

VIEW QUESTION
Back To Top
Search