How to save information related to post in database?

How about post meta ?

if ( ! update_post_meta (7, 'sent', '1') ) { 
    add_post_meta(7, 'sent', '1', true );   
}; 

add_post_meta

Or options table or custom table