DONE: error on banner where it is not updated, use uploaded file for etika.pdf

This commit is contained in:
ISMAIL MASSERAN
2026-04-30 13:14:23 +08:00
parent b93b51c005
commit 4569decd92
10 changed files with 99 additions and 11 deletions
@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddAttendanceEtikaUrlToPortalSettingsTable extends Migration
{
public function up(): void
{
Schema::table('portal_settings', function (Blueprint $table) {
$table->string('attendance_etika_url')->nullable()->after('zoom_meeting_url');
});
}
public function down(): void
{
Schema::table('portal_settings', function (Blueprint $table) {
$table->dropColumn('attendance_etika_url');
});
}
}