id(); $table->unsignedBigInteger('user_id')->nullable(); //$table->foreign('birth_place_id')->nullable()->references('id')->on('cities')->onUpdate('cascade')->onDelete('cascade'); $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->date('birth_day')->nullable(); $table->unsignedBigInteger('birth_place_id')->nullable(); $table->foreign('birth_place_id')->nullable()->references('id')->on('cities')->onUpdate('cascade')->onDelete('cascade'); $table->string('fiscal_code')->nullable(); $table->string('phone')->nullable(); $table->string('email')->nullable(); $table->string('address')->nullable(); $table->string('zip')->nullable(); $table->unsignedBigInteger('city_id')->nullable(); $table->foreign('city_id')->nullable()->references('id')->on('cities')->onUpdate('cascade')->onDelete('cascade'); $table->unsignedBigInteger('country_id')->nullable(); $table->foreign('country_id')->nullable()->references('id')->on('countries')->onUpdate('cascade')->onDelete('cascade'); $table->boolean('domicile')->default(1); $table->boolean('enabled')->default(1); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('resources'); } };