mirror of
https://github.com/PostgreSQL-For-Wordpress/postgresql-for-wordpress.git
synced 2026-01-25 16:02:19 +01:00
11 lines
227 B
PHP
11 lines
227 B
PHP
<?php
|
|
|
|
class ShowTablesSQLRewriter extends AbstractSQLRewriter
|
|
{
|
|
public function rewrite(): string
|
|
{
|
|
$schema = "public";
|
|
return 'SELECT tablename FROM pg_tables WHERE schemaname = \'$schema\';';
|
|
}
|
|
}
|