v0.10.0d - Rolled back menuplan to old system layout and functionality

This commit is contained in:
2020-08-17 12:24:43 +02:00
parent 773655c294
commit 9db169aadb
7 changed files with 92 additions and 86 deletions
@@ -17,9 +17,11 @@ class CreateMenuPlans extends Migration
{
Schema::create('menu_plans', function (Blueprint $table) {
$table->id();
$table->string('week', 2);
$table->longText('menu');
$table->unique('week');
$table->integer('week')->unique();
$table->string('monday', 255);
$table->string('tuesday', 255);
$table->string('wednesday', 255);
$table->string('thursday', 255);
$table->timestamps();
//$table->text('description');
});