mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
28 lines
766 B
PHP
28 lines
766 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
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('users', function (Blueprint $table) {
|
|
$table->unsignedBigInteger('current_project_id')->nullable()->after('timezone');
|
|
});
|
|
User::query()->each(function (User $user) {
|
|
$project = $user->createDefaultProject();
|
|
$user->servers()->update(['project_id' => $project->id]);
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::table('users', function (Blueprint $table) {
|
|
$table->dropColumn('current_project_id');
|
|
});
|
|
}
|
|
};
|