id(); $table->string('email', 255)->unique(); $table->string('password', 72); $table->string('company', 100); $table->string('image', 100)->nullable(); $table->string('profile', 1000)->nullable(); $table->string('tel', 11)->unique(); $table->unsignedInteger('relation_limit'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('fathers'); } }