Perbarui tabel persetujuan_penawaran: modifikasi kolom sla_resume dan sla_final
- Ubah kolom sla_resume dan sla_final menjadi tipe string yang dapat bernilai null dalam metode up() - Kembalikan kolom sla_resume dan sla_final ke tipe datetime yang tidak boleh null dalam metode down() - Perbaiki typo: 'sls_resume' menjadi 'sla_resume' dalam metode down()
This commit is contained in:
@@ -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('persetujuan_penawaran', function (Blueprint $table) {
|
||||||
|
$table->string('sla_resume')->nullable()->change();
|
||||||
|
$table->string('sla_final')->nullable()->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::table('persetujuan_penawaran', function (Blueprint $table) {
|
||||||
|
$table->datetime('sls_resume')->nullable(false)->change();
|
||||||
|
$table->datetime('sla_final')->nullable(false)->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user