1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 10:14:04 +00:00

respect code styling

This commit is contained in:
Jona Goldman 2019-10-16 11:59:30 -05:00
parent 0ac6b41f7e
commit 68c85b5e24

View file

@ -22,6 +22,7 @@ class MySQLDatabaseManager implements TenantDatabaseManager
{ {
$charset = $this->database->getConfig('charset'); $charset = $this->database->getConfig('charset');
$collation = $this->database->getConfig('collation'); $collation = $this->database->getConfig('collation');
return $this->database->statement("CREATE DATABASE `$name` CHARACTER SET `$charset` COLLATE `$collation`"); return $this->database->statement("CREATE DATABASE `$name` CHARACTER SET `$charset` COLLATE `$collation`");
} }