1.0.5 fix first login after install .php

This commit is contained in:
2026-06-03 11:59:44 +02:00
parent 25168debc0
commit fcbb6fb061
13 changed files with 191 additions and 70 deletions
@@ -14,8 +14,8 @@ return new class extends Migration
$table->string('nome_file');
$table->string('file_path');
$table->string('tipo')->nullable();
$table->enum('tipologia', ['avatar', 'galleria', 'documento', 'statuto', 'altro'])->default('documento');
$table->enum('visibilita', ['pubblico', 'gruppo', 'individuo', 'associazione', 'federazione'])->default('gruppo');
$table->string('tipologia', 50)->default('documento');
$table->string('visibilita', 50)->default('gruppo');
$table->unsignedBigInteger('visibilita_target_id')->nullable();
$table->string('visibilita_target_type')->nullable();
$table->string('mime_type')->nullable();