Codeception\Module\WPDb::grabPostMetaTableName PHP Method

grabPostMetaTableName() public method

Returns the prefixed post meta table name.
public grabPostMetaTableName ( ) : string
return string The prefixed `postmeta` table name, e.g. `wp_postmeta`.
    public function grabPostMetaTableName()
    {
        return $this->grabPrefixedTableNameFor('postmeta');
    }
WPDb