fix type uid

This commit is contained in:
arifal hidayat
2025-08-31 01:34:35 +07:00
parent 65d9247b46
commit cbe3d00c96

View File

@@ -13,7 +13,7 @@ return new class extends Migration
{ {
Schema::create('pbg_statuses', function (Blueprint $table) { Schema::create('pbg_statuses', function (Blueprint $table) {
$table->id(); $table->id();
$table->uuid('pbg_task_uuid'); $table->string('pbg_task_uuid');
$table->integer('status'); $table->integer('status');
$table->string('status_name'); $table->string('status_name');
$table->integer('slf_status')->nullable(); $table->integer('slf_status')->nullable();
@@ -21,7 +21,7 @@ return new class extends Migration
$table->date('due_date')->nullable(); $table->date('due_date')->nullable();
// nested "data" // nested "data"
$table->uuid('uid')->nullable(); $table->string('uid')->nullable();
$table->text('note')->nullable(); $table->text('note')->nullable();
$table->string('file')->nullable(); $table->string('file')->nullable();
$table->date('data_due_date')->nullable(); $table->date('data_due_date')->nullable();