increments('id'); $table->integer('timesheet_id')->nullable(); $table->date('date')->nullable(); $table->enum('type', ['Day','Night','Sleep'])->nullable(); $table->float('client_cost')->nullable(); $table->float('staff_cost')->nullable(); $table->integer('hours')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('workings'); } }