aggiunto funzionalità di Backup dell'applicazione'

This commit is contained in:
2023-04-04 09:22:52 +02:00
parent 2828ebcec9
commit dedf651770
37 changed files with 1804 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ class CreateMovimentisTable extends Migration
$table->date('mov_data');
$table->unsignedBigInteger('mov_fk_categoria');
$table->foreign('mov_fk_categoria')->references('id')->on('categories');
$table->string('mov_descrizione');
$table->longText('mov_descrizione');
$table->decimal('mov_importo',8,2);
$table->unsignedBigInteger('mov_inserito_da');
$table->foreign('mov_inserito_da')->references('id')->on('users');