public function run()
 {
     DB::table('products')->delete();
     DB::table('products_brands')->delete();
     DB::table('products_categories')->delete();
     DB::table('products_units')->delete();
     Brand::create(['name' => 'Vevey']);
     Unit::create(['code' => 'PC', 'name' => 'Peça']);
     Category::create(['name' => 'Feminino']);
     Category::create(['name' => 'Masculino']);
 }