|
|
@@ -21,9 +21,9 @@ class CreateProcessDailyParticipantsTable extends Migration
|
|
|
$table->bigInteger('user_id')->index()->comment('外键用户');
|
|
|
$table->time('started_at')->nullable()->comment('开始时间');
|
|
|
$table->time('ended_at')->nullable()->comment('开始时间');
|
|
|
- $table->decimal('hour_price')->nullable()->comment('计时工资');
|
|
|
+ $table->decimal('hour_price')->nullable()->comment('计时单价');
|
|
|
$table->tinyInteger('hour_count')->nullable()->comment('计时工时');
|
|
|
- $table->decimal('unit_price')->nullable()->comment('计件工资');
|
|
|
+ $table->decimal('unit_price')->nullable()->comment('计件单价');
|
|
|
$table->integer('unit_count')->nullable()->comment('计件数');
|
|
|
$table->integer('dinner_duration')->default(0)->comment('晚饭时间');
|
|
|
$table->string('remark')->nullable()->comment('备注');
|