bigIncrements('id'); $table->string('surname', 200); $table->string('firstname', 200); $table->string('email', 250); $table->string('phone', 20); $table->timestamps(); $table->tinyInteger('active')->default(1); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }