id(); $table->string('title'); $table->longText('content'); $table->string('preview'); $table->string('thumbnail'); $table->string('tag'); $table->string('author_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messages'); } };