increments('id'); $table->string('name'); $table->text('reason')->nullable(); $table->morphs('model'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('statuses'); } };