creato seeder iniziale per Documenti e modificato migration File di Documentis
This commit is contained in:
@@ -16,22 +16,12 @@ class CreateDocumentisTable extends Migration
|
||||
Schema::create('documentis', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
$table->foreignId('movimenti_id');
|
||||
$table->string('descrizione');
|
||||
$table->string('filename');
|
||||
// $table->foreignId('movimenti_id');
|
||||
// Aggiunto per definire il nome della cartella
|
||||
$table->string('path');
|
||||
// $table->string('filename');
|
||||
});
|
||||
|
||||
/*
|
||||
{issue #5} GITEA - proposta modifica
|
||||
Schema::create('documentis', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
$table->string('entita');
|
||||
$table->bigInteger('entita_id');
|
||||
$table->string('descrizione');
|
||||
$table->string('filename');
|
||||
});
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user