++ fix prioritario display and add link sent toggle

This commit is contained in:
2026-04-13 15:40:35 +00:00
parent 0553d4ef74
commit 6a65087449
10 changed files with 459 additions and 108 deletions

View File

@@ -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('assegnazioni', function (Blueprint $table) {
$table->boolean('link_sent')->default(false)->after('pdf_access_code');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('assegnazioni', function (Blueprint $table) {
$table->dropColumn('link_sent');
});
}
};