id(); $table->unsignedBigInteger('user_id'); $table->string('judul'); $table->string('deskripsi'); $table->string('lokasi'); $table->string('tanggal'); $table->string('foto'); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('apresiasis'); } };