increments('id'); $table->integer('task_id')->nullable(); $table->integer('user_id')->nullable(); $table->integer('project_id')->nullable(); $table->date('date')->nullable(); $table->dateTime('time_start')->nullable(); $table->dateTime('time_end')->nullable(); $table->time('duration')->nullable(); $table->integer('percentage')->nullable(); $table->text('description')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('timesheets'); } }