public function run()
 {
     DB::table('post_dificulties')->delete();
     PostDificulty::create(['title' => 'Very easy', 'description' => 'Some minutes of reading are enough', 'level' => 1]);
     PostDificulty::create(['title' => 'Easy', 'description' => 'Some minutes of reading and thinking about it are enough', 'level' => 2]);
     PostDificulty::create(['title' => 'Medium', 'description' => 'Some exercising and paper to get a full understandment of it', 'level' => 3]);
     PostDificulty::create(['title' => 'Hard', 'description' => 'A lot of exercising and paper to get a full understandment of it', 'level' => 4]);
     PostDificulty::create(['title' => 'Very hard', 'description' => 'It will take you some weeks or even months to fully understand, use and explain it easily', 'level' => 5]);
 }