Commit e3f1af51 authored by Guilherme Blanco's avatar Guilherme Blanco

Merge pull request #267 from deeky666/add-sql-server-platform-supports-schemas

Add SQLServerPlatform supports schemas
parents 2a58ac0e 949a9ffa
...@@ -106,6 +106,14 @@ class SQLServerPlatform extends AbstractPlatform ...@@ -106,6 +106,14 @@ class SQLServerPlatform extends AbstractPlatform
return false; return false;
} }
/**
* {@inheritdoc}
*/
public function supportsSchemas()
{
return true;
}
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
......
...@@ -119,6 +119,11 @@ class SQLServerPlatformTest extends AbstractPlatformTestCase ...@@ -119,6 +119,11 @@ class SQLServerPlatformTest extends AbstractPlatformTestCase
$this->assertTrue($this->_platform->supportsIdentityColumns()); $this->assertTrue($this->_platform->supportsIdentityColumns());
} }
public function testSupportsSchemas()
{
$this->assertTrue($this->_platform->supportsSchemas());
}
public function testDoesNotSupportSavePoints() public function testDoesNotSupportSavePoints()
{ {
$this->assertTrue($this->_platform->supportsSavepoints()); $this->assertTrue($this->_platform->supportsSavepoints());
......
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