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\';';
|
|
}
|
|
}
|