id(); $table->string('name'); $table->string('author'); $table->unsignedInteger('servings'); $table->datetime('date_entered'); $table->datetime('date_modified'); $table->longtext('instructions'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('recipes'); } }