penambahan menu activity dan perbaikan menu assingment

This commit is contained in:
majid
2024-09-25 09:44:35 +07:00
parent 00f568fb6d
commit 91d70c9e2e
14 changed files with 805 additions and 88 deletions

View File

@@ -0,0 +1,29 @@
<?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('permohonan', function (Blueprint $table) {
$table->string('dokumen')->nullable()->after('status');
$table->string('keterangan')->nullable()->after('dokumen');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('permohonan', function (Blueprint $table) {
$table->dropColumn('dokumen');
$table->dropColumn('keterangan');
});
}
};