increments('id'); $table->integer('account_id')->nullable(); $table->integer('contact_id')->nullable(); $table->string('role', 50)->nullable(); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->enum('direct', ['Yes', 'No'])->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_contact_account_contacts'); } }