bigIncrements('id'); $table->string('lo_number'); $table->date('date'); $table->bigInteger('project_id')->unsigned()->nullable(); $table->enum('type',['harian','borongan'])->nullable(); $table->date('from_date')->nullable(); $table->date('to_date')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('labour_orders'); } }