corretto lunghezza stringa colonne ntelaio e nmotore

This commit is contained in:
2023-04-02 18:43:00 +02:00
parent 39f1fb8eb2
commit bb783b9bf1
10 changed files with 263 additions and 49 deletions

View File

@@ -22,10 +22,10 @@ class CreateAutosTable extends Migration
$table->string('cilindrata',10);
$table->string('alimentazione',10);
$table->string('cvfiscali',10);
$table->string('ntelaio',10);
$table->string('nmotore',10);
$table->string('ntelaio',30);
$table->string('nmotore',30)->nullable();
$table->date('data_acquisto');
$table->text('note');
$table->text('note')->nullable();
});
}