mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +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);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |