id(); $table->foreignIdFor(\App\Models\User::class)->constrained(); $table->date('date'); $table->unsignedInteger('value'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('rainfalls'); } };