id(); $table->string('title', 255); $table->string('author', 255)->nullable(); $table->longText('text'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('posts'); } }