function SchemaTest::testTableWithSpecificDataType

Same name in this branch
  1. 11.x core/modules/sqlite/tests/src/Kernel/sqlite/SchemaTest.php \Drupal\Tests\sqlite\Kernel\sqlite\SchemaTest::testTableWithSpecificDataType()
  2. 11.x core/modules/mysql/tests/src/Kernel/mysql/SchemaTest.php \Drupal\Tests\mysql\Kernel\mysql\SchemaTest::testTableWithSpecificDataType()
Same name and namespace in other branches
  1. 10 core/modules/sqlite/tests/src/Kernel/sqlite/SchemaTest.php \Drupal\Tests\sqlite\Kernel\sqlite\SchemaTest::testTableWithSpecificDataType()
  2. 10 core/modules/mysql/tests/src/Kernel/mysql/SchemaTest.php \Drupal\Tests\mysql\Kernel\mysql\SchemaTest::testTableWithSpecificDataType()
  3. 10 core/modules/pgsql/tests/src/Kernel/pgsql/SchemaTest.php \Drupal\Tests\pgsql\Kernel\pgsql\SchemaTest::testTableWithSpecificDataType()

Overrides DriverSpecificSchemaTestBase::testTableWithSpecificDataType

File

core/modules/pgsql/tests/src/Kernel/pgsql/SchemaTest.php, line 50

Class

SchemaTest
Tests schema API for the PostgreSQL driver.

Namespace

Drupal\Tests\pgsql\Kernel\pgsql

Code

public function testTableWithSpecificDataType() : void {
    $table_specification = [
        'description' => 'Schema table description.',
        'fields' => [
            'timestamp' => [
                'pgsql_type' => 'timestamp',
                'not null' => FALSE,
                'default' => NULL,
            ],
        ],
    ];
    $this->schema
        ->createTable('test_timestamp', $table_specification);
    $this->assertTrue($this->schema
        ->tableExists('test_timestamp'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.