getConnection()); $schema->create( 'cache', function (Blueprint $table) { $table->string('key'); $table->string('value'); $table->bigInteger('expiration'); } ); } /** * Reverse the migrations. */ public function down(): void { $schema = Schema::connection($this->getConnection()); $schema->dropIfExists('cache'); } };