/**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     $about = Page::find(2);
     DB::table('pages')->truncate();
     Schema::table('pages', function (Blueprint $table) {
         //
         $table->dropColumn('data');
         $table->string('title')->nullable();
         $table->longText('description')->nullable();
     });
     // Add Page using Eloquent
     $page = new Page();
     $page->slug = 'about';
     $page->title = $about->data->title;
     $page->description = $about->data->description;
     $page->save();
 }