public function up()
 {
     /** @var Content $content */
     foreach (Content::all() as $content) {
         $page = Page::find($content->viewId);
         $content->view()->associate($page->view);
         $content->save();
     }
 }