v1.5.20c Made pdf layout, added maxlength

This commit is contained in:
2021-05-05 15:27:51 +02:00
parent 87006ae54f
commit d636beaba5
20 changed files with 99 additions and 80 deletions
@@ -18,10 +18,10 @@ class CreateMenuPlans extends Migration
Schema::create('menu_plans', function (Blueprint $table) {
$table->id();
$table->integer('week')->unique();
$table->string('monday', 255);
$table->string('tuesday', 255);
$table->string('wednesday', 255);
$table->string('thursday', 255);
$table->text('monday');
$table->text('tuesday');
$table->text('wednesday');
$table->text('thursday');
$table->timestamps();
//$table->longText('description');
});