This commit is contained in:
Kevin Adametz 2024-08-05 12:05:24 +02:00
parent 04d677d37a
commit bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions

View file

@ -17,13 +17,8 @@ class CreateIngredientsTable extends Migration
$table->increments('id');
$table->string('name')->index();
$table->text('trans_name')->nullable();
$table->text('inci')->nullable();
$table->mediumText('trans_inci')->nullable();
$table->text('effect')->nullable();
$table->mediumText('trans_effect')->nullable();
$table->boolean('active')->default(false);
$table->unsignedTinyInteger('pos')->nullable()->default(0);
@ -42,4 +37,4 @@ class CreateIngredientsTable extends Migration
{
Schema::dropIfExists('ingredients');
}
}
}