mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-12 03:30:12 +08:00
21 lines
417 B
PHP
21 lines
417 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yii\db\mysql;
|
|
|
|
use yii\db\SchemaBuilder as AbstractSchemaBuilder;
|
|
|
|
/**
|
|
* SchemaBuilder is the schema builder for MySQL databases.
|
|
*
|
|
* @author Vasenin Matvey <vaseninm@gmail.com>
|
|
* @since 2.0.5
|
|
*/
|
|
class SchemaBuilder extends AbstractSchemaBuilder
|
|
{
|
|
}
|