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