Merge remote-tracking branch 'composer/tender' into staging
This commit is contained in:
30
database/migrations/2024_11_11_063934_update_kjpp_table.php
Normal file
30
database/migrations/2024_11_11_063934_update_kjpp_table.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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('kjpp', function (Blueprint $table) {
|
||||
$table->string('detail_nama_pimpinan')->nullable()->after('nama_pimpinan');
|
||||
$table->string('detail_nomor_hp_pimpinan')->nullable()->after('nomor_hp_pimpinan');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('kjpp', function (Blueprint $table) {
|
||||
$table->dropColumn('detail_nama_pimpinan');
|
||||
$table->dropColumn('detail_nomor_hp_pimpinan');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user