modifica funzione di export
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user