First of all, I like to know that you are using a custom post type and in that you want to add featured image support, if yes then you need to write extra code in functions.php of theme.
$post_type_name = new Cuztom_Post_Type( 'your-custom-post-type', array(
'supports' => array('thumbnail')
));