dbfdg bigIncrements('id'); $table->integer('employee_id')->default(0); $table->date('start_date'); $table->date('end_date'); $table->string('purpose_of_visit')->nullable(); $table->string('place_of_visit')->nullable(); $table->string('description')->nullable(); $table->string('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('travels'); } }