Schema.php in Drupal 10
Same filename in this branch
- 10 core/lib/Drupal/Core/Database/Schema.php
- 10 core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
- 10 core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Schema.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Schema.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Schema.php
- 10 core/tests/Drupal/Tests/Core/Database/Stub/Driver/Schema.php
- 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Schema.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Schema.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Schema.php
File
core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Schema.phpView source
<?php
namespace Drupal\driver_test\Driver\Database\DrivertestPgsql;
include_once dirname(__DIR__, 8) . '/pgsql/src/Driver/Database/pgsql/Schema.php';
use Drupal\pgsql\Driver\Database\pgsql\Schema as CoreSchema;
/**
* PostgreSQL implementation of \Drupal\Core\Database\Schema.
*/
class Schema extends CoreSchema {
}
Classes
Name | Description |
---|---|
Schema | PostgreSQL implementation of \Drupal\Core\Database\Schema. |