Some checks failed
Run Action to Production / run pull to sync on target message (push) Failing after 1m7s
33 lines
857 B
PHP
33 lines
857 B
PHP
<?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('lombas', function (Blueprint $table) {
|
|
$table->text('keterangan_operator')->nullable()->after('status');
|
|
$table->text('ettd_dpl')->nullable()->after('status');
|
|
$table->text('ettd_wd3')->nullable()->after('status');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::table('lombas', function (Blueprint $table) {
|
|
$table->dropColumn('keterangan_operator');
|
|
$table->dropColumn('ettd_dpl');
|
|
$table->dropColumn('ettd_wd3');
|
|
});
|
|
}
|
|
};
|