wpmdb_alter_table_name

wpmdb_alter_table_name

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wp-migrate-db.2.6.9

apply_filters('wpmdb_alter_table_name') is found 2 times:

  • /class/Common/Sql/Table.php line 249
                return $alter_table_name;
            }
    
            global $wpdb;
            $alter_table_name = apply_filters('wpmdb_alter_table_name', $wpdb->base_prefix . 'wpmdb_alter_statements');
    
            return $alter_table_name;
        }
    
        /**
         * Returns an array of table names with their associated row counts.
    
  • /class/Common/Sql/Table.php line 1187
            if (!empty($alter_table_name)) {
                return $alter_table_name;
            }
    
            $alter_table_name = apply_filters('wpmdb_alter_table_name', $this->props->temp_prefix . 'wpmdb_alter_statements');
    
            return $alter_table_name;
        }
    
        /**
         * Creates a temporary table with a copy of the existing table's data.