You can use WordPress hooks such as manage_posts_columns or manage_${post_type}_posts_columns to customize the standard columns. For example, to add a new column for the post type “Books”, the code looks like this:
function my_custom_book_columns($columns) {
// Neue Spalte hinzufügen
$columns['book_author'] = __('Autor');
return $columns;
}