Create database with utf8 info
This commit is contained in:
parent
cc40b7580a
commit
23dbbc788f
@ -3,7 +3,6 @@
|
|||||||
namespace App\Console\Commands;
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
use Log;
|
use Log;
|
||||||
use PDO;
|
|
||||||
|
|
||||||
use App\Console\BaseCommand;
|
use App\Console\BaseCommand;
|
||||||
|
|
||||||
@ -45,15 +44,20 @@ class CreateDatabase extends BaseCommand
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($this->option('reset') === true) {
|
if ($this->option('reset') === true) {
|
||||||
|
$sql = "DROP DATABASE IF EXISTS `$name`";
|
||||||
try {
|
try {
|
||||||
$conn->exec("DROP DATABASE IF EXISTS `$name`");
|
Log::info('Dropping database: '.$sql);
|
||||||
|
$conn->exec($sql);
|
||||||
} catch (\PDOException $e) {
|
} catch (\PDOException $e) {
|
||||||
Log::error($e);
|
Log::error($e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$sql = "CREATE DATABASE IF NOT EXISTS `$name` CHARACTER SET UTF8 COLLATE utf8_unicode_ci";
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$conn->exec("CREATE DATABASE IF NOT EXISTS `$name`");
|
Log::info('Creating database: '.$sql);
|
||||||
|
$conn->exec($sql);
|
||||||
} catch (\PDOException $e) {
|
} catch (\PDOException $e) {
|
||||||
Log::error($e);
|
Log::error($e);
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user