Featured Image id disappeared

When registering a custom post type you must say that your CPT accepts thumbnail:

$post_type="vehicles";
$supports = array( 'title', 'editor', 'thumbnail');

$args = array(
          [...]
          'supports' => $supports
      );
register_post_type($post_type, $args);