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();
});
}
};

View File

@@ -25,7 +25,7 @@ class GlobalSettingSeeder extends Seeder
],
[
"key" => "SIMBG_PASSWORD",
"value" => "Simbg123",
"value" => "LogitechG29",
"type" => "string",
"description" => "Password SIMBG",
"created_at" => Carbon::now()->format("Y-m-d H:i:s"),

View File

@@ -32,7 +32,7 @@ class MenuSeeder extends Seeder
"sort_order" => 2,
"children" => [
[
"name" => "Dashboard Pimpinan SIMBG",
"name" => "Dashboard Pimpinan (PBG)",
"url" => "dashboard.home",
"icon" => null,
"sort_order" => 1,