increments('id'); $table->integer('account_id'); $table->string('title')->nullable(); $table->longText('post'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('entries'); } }