Oopsie Woopsie

This commit is contained in:
notCharles 2024-05-11 21:39:00 -04:00
parent 9fc46b9ae5
commit 37cc3ae20d

View File

@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('allocations', function (Blueprint $table) {
$table->unsignedInteger('assigned_to')->change();
$table->unsignedInteger('assigned_to')->nullable()->change();
$table->unsignedInteger('node')->change();
});