increments('id'); $table->text('title')->nullable(); $table->text('leave_note')->nullable(); $table->text('durations')->nullable(); $table->text('start_time')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('lead_meetings'); } }