Merge branch 'main' of github.com:pelican-dev/panel

This commit is contained in:
Lance Pioch 2024-05-11 21:50:04 -04:00
commit 259599b441

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();
});