dbfdg id(); $table->integer('project_id'); $table->integer('task_id')->default(0); $table->date('date'); $table->time('time'); $table->text('description')->nullable(); $table->integer('created_by')->default(0); $table->timestamps(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('timesheets'); } }