feat: implement internship form upload functionality for interns with database migration and UI integration

This commit is contained in:
Ümit Tunç
2026-06-01 07:53:59 +03:00
parent e0941fe931
commit 76081f0e85
6 changed files with 183 additions and 0 deletions
@@ -0,0 +1,28 @@
<?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('career_applications', function (Blueprint $table) {
$table->string('to_be_signed_internship_form_path')->nullable()->after('signed_internship_form_path');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('career_applications', function (Blueprint $table) {
$table->dropColumn('to_be_signed_internship_form_path');
});
}
};