bigIncrements('id'); $table->string('name', 255); $table->text('contact_emails')->nullable(); $table->boolean('active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('insurances'); } }