id(); $table->foreignId('employee_id')->constrained()->onDelete('cascade'); // Foreign key to employees $table->decimal('amount', 10, 2); // Sale amount $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('sales'); } };