id(); $table->string('name'); $table->string('unit')->nullable(); $table->unsignedFloat('calories')->default(0); $table->unsignedFloat('protein')->default(0); $table->unsignedFloat('fat')->default(0); $table->unsignedFloat('carbohydrates')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ingredients'); } }