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