fix bug sync google sheet and handle to long data address on pbg task

This commit is contained in:
arifal
2025-05-20 11:13:21 +07:00
parent c4d865bf2b
commit 34e082c31b
3 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('pbg_task', function(Blueprint $table){
$table->text('address')->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};