mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 06:40:59 +08:00
14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\validators\UniqueValidatorDriverTests;
|
|
|
|
use yiiunit\framework\validators\UniqueValidatorTest;
|
|
|
|
/**
|
|
* @group validators
|
|
*/
|
|
class UniqueValidatorPostgresTest extends UniqueValidatorTest
|
|
{
|
|
protected $driverName = 'pgsql';
|
|
}
|