Where in WordPress DB are stored wp_cron tasks?

I was looking in wp_options table but there is nothing like that eventhough I have set my cron tasks like:

add_action('init', function() {
    if ( !wp_next_scheduled('my_awesome_cron_hook') ) {
        wp_schedule_event(time(), 'hourly', 'my_awesome_cron_hook');
    }
});

Or is it stored in some txt file in wordpress?

Related posts

Leave a Reply

1 comment