Kinda Tryna fix

This commit is contained in:
2020-06-26 13:11:24 +02:00
parent 400f2e563f
commit 44e70232cd
5 changed files with 43 additions and 28 deletions
@@ -15,7 +15,15 @@ class CreateMenuPlans extends Migration
{
Schema::create('menu_plans', function (Blueprint $table) {
$table->id();
$table->string('monday', 255);
$table->string('tuesday', 255);
$table->string('wednesday', 255);
$table->string('thursday', 255);
$table->string('friday', 255);
$table->string('saturday', 255);
$table->string('sunday', 255);
$table->timestamps();
//$table->text('description');
});
}