mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 06:40:59 +08:00
20 lines
384 B
PHP
20 lines
384 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\mssql;
|
|
|
|
use yiiunit\framework\db\ActiveRecordTest;
|
|
|
|
/**
|
|
* @group db
|
|
* @group mssql
|
|
*/
|
|
class MssqlActiveRecordTest extends ActiveRecordTest
|
|
{
|
|
protected $driverName = 'sqlsrv';
|
|
|
|
public function testExplicitPkOnAutoIncrement()
|
|
{
|
|
$this->markTestSkipped('MSSQL does not support explicit value for an IDENTITY column.');
|
|
}
|
|
}
|