Files
yii2/tests/unit/framework/db/sqlite/SqliteSchemaTest.php
2013-09-06 15:32:33 +02:00

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.');
}
}