id(); $table->string('name'); $table->string('paternal')->nullable(); $table->string('maternal')->nullable(); $table->string('rfc')->unique()->nullable(); $table->string('curp')->unique()->nullable(); $table->text('address')->nullable(); $table->boolean('tipopers')->nullable(); $table->string('pasaporte')->unique()->nullable(); $table->string('licencia')->unique()->nullable(); $table->string('ent_fed')->nullable(); $table->string('munic')->nullable(); $table->string('callep')->nullable(); $table->string('num_ext')->nullable(); $table->string('num_int')->nullable(); $table->string('colonia')->nullable(); $table->string('cp')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('owners'); } };