mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
13 lines
207 B
PHP
13 lines
207 B
PHP
<?php
|
|
namespace common\db\mysql;
|
|
|
|
use yii\db\mysql\Schema as MysqlSchema;
|
|
|
|
class Schema extends MysqlSchema {
|
|
|
|
public function createQueryBuilder() {
|
|
return new QueryBuilder($this->db);
|
|
}
|
|
|
|
}
|