Doctrine\Tests\DBAL\Functional\Schema\SchemaManagerFunctionalTestCase::createTestTable PHP Method

createTestTable() protected method

protected createTestTable ( $name = 'test_table', $data = [] )
    protected function createTestTable($name = 'test_table', $data = array())
    {
        $options = array();
        if (isset($data['options'])) {
            $options = $data['options'];
        }

        $table = $this->getTestTable($name, $options);

        $this->_sm->dropAndCreateTable($table);
    }