increments('id'); $table->string('quote'); $table->string('quotist'); // NEOLOGISM - the one who said the quote $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('quotes'); } }