increments('id'); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->string('phone', 15)->nullable(); $table->text('company_name')->nullable(); $table->text('position')->nullable(); $table->text('abn')->nullable(); $table->text('address')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('insurances'); } }