예제 #1
0
 protected function configureDatabase()
 {
     $db = new DBM();
     $db->addConnection(['driver' => 'sqlite', 'database' => ':memory:', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '']);
     $db->bootEloquent();
     $db->setAsGlobal();
 }