Files
postgresql-for-wordpress/pg4wp/rewriters/ShowTablesSQLRewriter.php
2024-10-18 23:07:05 -07:00

11 lines
228 B
PHP

<?php
class ShowTablesSQLRewriter extends AbstractSQLRewriter
{
public function rewrite(): string
{
$schema = DB_SCHEMA;
return 'SELECT tablename FROM pg_tables WHERE schemaname = \'$schema\';';
}
}