Commit 0322e427 by miramir

fix unnecessary diff

parent 93c567e7
......@@ -55,6 +55,14 @@ class Schema extends \yii\db\Schema
/**
* @inheritdoc
*/
public function quoteSimpleTableName($name)
{
return strpos($name, '"') !== false ? $name : '"' . $name . '"';
}
/**
* @inheritdoc
*/
public function createQueryBuilder()
{
return new QueryBuilder($this->db);
......@@ -97,11 +105,6 @@ class Schema extends \yii\db\Schema
$table->fullName = $table->schemaName !== $this->defaultSchema ? $table->schemaName . '.' . $table->name : $table->name;
}
public function quoteSimpleTableName($name)
{
return strpos($name, '"') !== false ? $name : '"' . $name . '"';
}
/**
* Collects the table column metadata.
* @param TableSchema $table the table schema
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment