mirror of
https://github.com/PostgreSQL-For-Wordpress/postgresql-for-wordpress.git
synced 2026-01-25 16:02:19 +01:00
10 lines
150 B
PHP
10 lines
150 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class SetNamesSQLRewriter extends AbstractSQLRewriter
|
||
|
|
{
|
||
|
|
public function rewrite(): string
|
||
|
|
{
|
||
|
|
return "SET NAMES 'utf8'";
|
||
|
|
}
|
||
|
|
}
|