partial update fix sync data pbg
This commit is contained in:
@@ -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();
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -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"),
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user