id(); $table->integer("project_id")->nullable(); $table->string("date")->nullable(); $table->string("remark")->nullable(); $table->decimal("price_ratio", 2, 1)->nullable()->default(1); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('holiday'); } }