increments('id'); $table->integer('type'); $table->string('reference_id'); $table->string('name'); $table->string('designation')->nullable(); $table->string('contact'); $table->string('email')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }