id(); $table->string('name'); $table->string('slug')->unique(); $table->longText('description')->nullable(); $table->longText('description_delta')->nullable(); $table->integer('time_prep')->nullable(); $table->integer('time_cook')->nullable(); $table->string('source')->nullable(); $table->unsignedInteger('servings'); $table->unsignedFloat('weight')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('recipes'); } }