feat: add github_repo field to career applications and update intern dashboard UI

This commit is contained in:
Ümit Tunç
2026-06-06 01:05:29 +03:00
parent c3f343ad70
commit 080c39ac88
5 changed files with 615 additions and 217 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('github_repo')->nullable()->after('internship_total_days');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('career_applications', function (Blueprint $table) {
$table->dropColumn('github_repo');
});
}
};