increments('id'); $table->integer('deal_id')->nullable(); $table->integer('contact_id')->nullable(); $table->string('poa_manager', 50)->nullable(); $table->string('poa_manager_nationality', 50)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_deal_contacts'); } }