action_scheduler/created_table

action_scheduler/created_table

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.2.2

do_action('action_scheduler/created_table') is found 1 times:

  • /packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php line 138
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
        if ( $definition ) {
            $updated = dbDelta( $definition );
            foreach ( $updated as $updated_table => $update_description ) {
                if ( strpos( $update_description, 'Created table' ) === 0 ) {
                    do_action( 'action_scheduler/created_table', $updated_table, $table );
                }
            }
        }
    }
     
    /**