id(); $table->string('name'); $table->string('paternal'); $table->string('maternal')->nullable(); $table->string('rfc')->unique()->nullable(); $table->string('curp')->unique()->nullable(); $table->text('address')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('owners'); } };