Fixes size of description on article, fix save form on Families and genres

This commit is contained in:
Ludovic CANDELLIER
2022-01-22 17:53:24 +01:00
parent 2912dc6794
commit 6f04a8e7b7
5 changed files with 27 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ class CreateShopArticlesTable extends Migration {
{
$table->increments('id');
$table->string('name')->nullable();
$table->string('description')->nullable();
$table->text('description')->nullable();
$table->timestamps();
$table->softDeletes();
});