mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-17 21:21:17 +08:00
15 lines
305 B
PHP
15 lines
305 B
PHP
<?php
|
|
namespace yiiunit\framework\db\sqlite;
|
|
|
|
use yiiunit\framework\db\SchemaTest;
|
|
|
|
class SqliteSchemaTest extends SchemaTest
|
|
{
|
|
protected $driverName = 'sqlite';
|
|
|
|
public function testCompositeFk()
|
|
{
|
|
$this->markTestSkipped('sqlite does not allow getting enough information about composite FK.');
|
|
}
|
|
}
|