fix type uid
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user