id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('title', 30); $table->string('body', 50); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->nullable()->useCurrentOnUpdate(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('broadcasts'); } };