modifica funzione di export

This commit is contained in:
2025-10-16 11:52:04 +02:00
parent 14990049ed
commit feae88c4ff
3 changed files with 5 additions and 4 deletions

View File

@@ -20,8 +20,8 @@ class CreateMovimentisTable extends Migration
$table->unsignedBigInteger('mov_fk_categoria');
$table->foreign('mov_fk_categoria')->references('id')->on('categories');
$table->longText('mov_descrizione');
$table->decimal('mov_importo_dare',8,2)->nullable();
$table->decimal('mov_importo_avere',8,2)->nullable();
$table->decimal('mov_importo_dare',8,2)->nullable()->default(0.00);
$table->decimal('mov_importo_avere',8,2)->nullable()->default(0.00);
$table->unsignedBigInteger('mov_inserito_da');
$table->foreign('mov_inserito_da')->references('id')->on('users');
$table->unsignedBigInteger('mov_fk_tags');