id(); $table->string('name',50); $table->string('description',125)->nullable(); $table->softDeletes(); $table->timestamps(); }); Schema::create('contracts', function (Blueprint $table) { $table->id(); $table->uuid('uuid')->unique(); $table->string('reference', 125)->nullable(); $table->date('start_date'); $table->date('end_date')->nullable(); $table->string('description', 255)->nullable(); $table->foreignIdFor(\App\Models\ClientCase::class); $table->foreignId('type_id')->references('id')->on('contract_types'); $table->unsignedTinyInteger('active')->default(1); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contract_types'); Schema::dropIfExists('contracts'); } };