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