wpmdb_check_table_column_for_reference

wpmdb_check_table_column_for_reference

Hook Type: filter

See hook in core

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

apply_filters('wpmdb_check_table_column_for_reference') is found 1 times:

  • /class/Common/Replace.php line 782
                    'table' => $table_prefix . 'aiowps_audit_log',
                    'column' => 'stacktrace'
                ]
            ];
            $table_column_for_check = apply_filters('wpmdb_check_table_column_for_reference', $table_column_for_check);
            foreach($table_column_for_check as $table_column ) {
                if (
                    array_key_exists('table', $table_column)
                    && $table_column['table'] === $this->get_table()
                    && array_key_exists('column', $table_column)
                    && $table_column['column'] === $this->get_column()