id(); $table->string('instrument'); $table->integer('score_order'); $table->index('score_order'); $table->timestamps(); }); Artisan::call('db:seed', ['--class' => InstrumentSeeder::class]); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('instruments'); } };