feat: tambah kehadiran peserta per kegiatan via RelationManager
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('activity_member', function (Blueprint $table) {
|
||||
$table->enum('status', ['hadir', 'izin', 'alpha'])->default('hadir')->after('user_id');
|
||||
$table->text('notes')->nullable()->after('status');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('activity_member', function (Blueprint $table) {
|
||||
$table->dropColumn(['status', 'notes']);
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user