increments('id'); $table->integer('conveyancing_id')->nullable(); $table->integer('contact_id')->nullable(); $table->integer('related_id')->nullable(); $table->enum('type', ['Yes', 'No'])->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_conveyancing_contacts'); } }