id(); $table->bigInteger('employee_id')->comment('员工ID'); $table->mediumInteger('type')->comment('奖惩类型')->index(); $table->string('date', 10)->comment('奖惩日期')->index(); $table->decimal('price')->comment('奖惩金额'); $table->string('remark')->default('')->comment('备注'); $table->tinyInteger('status')->default(1)->comment('状态'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uc_employee_reward_punishment_t'); } }