partial update fix sync data pbg

This commit is contained in:
arifal
2025-08-07 22:04:40 +07:00
parent dd1cd72450
commit 3902a486f7
11 changed files with 114 additions and 9 deletions

View File

@@ -0,0 +1,36 @@
<?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_details', function (Blueprint $table) {
$table->string("nik")->nullable()->change();
$table->string("type_card")->nullable()->change();
$table->string("basement")->nullable()->change();
$table->decimal('latitude', 15, 8)->nullable()->change();
$table->decimal('longitude', 15, 8)->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('pbg_task_details', function (Blueprint $table) {
$table->string("nik")->nullable()->change();
$table->string("type_card")->nullable()->change();
$table->string("basement")->nullable()->change();
$table->decimal('latitude', 15, 8)->nullable()->change();
$table->decimal('longitude', 15, 8)->nullable()->change();
});
}
};