action_scheduler/created_table

action_scheduler/created_table

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.7.0.0

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

  • /packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php line 138
    		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 );
    				}
    			}
    		}
    	}
    
    	/**