id(); $table->string('name'); $table->string('slug')->unique(); $table->string('detail')->nullable(); $table->string('brand')->nullable(); $table->string('source')->nullable(); $table->string('notes')->nullable(); $table->unsignedFloat('serving_size'); $table->enum('serving_unit', ['tsp', 'tbsp', 'cup', 'oz'])->nullable(); $table->string('serving_unit_name')->nullable(); $table->unsignedFloat('serving_weight'); $table->unsignedFloat('calories')->default(0); $table->unsignedFloat('fat')->default(0); $table->unsignedFloat('cholesterol')->default(0); $table->unsignedFloat('sodium')->default(0); $table->unsignedFloat('carbohydrates')->default(0); $table->unsignedFloat('protein')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('foods'); } }