id(); $table->string('name'); $table->timestamps(); }); DB::table('statuses')->insert([ ['name' => 'Moderation'], ['name' => 'Declined'], ['name' => 'Acepted'], ]); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('statuses'); } };