Search for %s

  1. Search 7.x for %s
  2. Search 9.5.x for %s
  3. Search 8.9.x for %s
  4. Search 10.3.x for %s
  5. Search 11.x for %s
  6. Other projects
Title Object type File name Summary
SchemaDefinitionTest::testInvalidColumnTypeForScale function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a scale to a non-numeric column.
SchemaDefinitionTest::testInvalidColumnTypeForSerialize function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a serialize to a non-text/blob column.
SchemaDefinitionTest::testInvalidColumnTypeForUnsigned function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing unsigned to a non-numeric column.
SchemaDefinitionTest::testInvalidForeignKeyForMismatchingColumnCount function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a non Column array member to Table::$columns.
SchemaDefinitionTest::testInvalidPrimaryKeyForPartialLengthColumn function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing limited length columns to primary key.
SchemaDefinitionTest::testInvalidSerialForDefault function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests Serial column.
SchemaDefinitionTest::testInvalidSerialForNotNull function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests Serial column.
SchemaDefinitionTest::testInvalidSerialForUnsigned function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests Serial column.
SchemaDefinitionTest::testInvalidTableInSchema function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a non Table array member to Schema::$tables.
SchemaDefinitionTest::testInvalidUniqueKeyForPartialLengthColumn function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing limited length columns to an unique key.
SchemaDefinitionTest::testNullDefaultForIntColumn function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a null default to an int column.
SchemaDefinitionTest::testNullDefaultForNotNullArgument function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a null default when notNull: TRUE is specified.
SchemaDefinitionTest::testNullDefaultForTextColumn function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a null default to a text column.
SchemaDefinitionTest::testSchemaMethods function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests Schema.
SchemaDefinitionTest::testStringDefaultForIntColumn function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a string default to an int column.
SchemaDefinitionTest::testStringDefaultForTextColumn function core/tests/Drupal/Tests/Core/Database/SchemaDefinitionTest.php Tests passing a string default to a text column.
SchemaDefinitionType.php file core/lib/Drupal/Core/Database/SchemaDefinition/SchemaDefinitionType.php
SchemaException class core/lib/Drupal/Core/Database/SchemaException.php Base exception for Schema-related errors.
SchemaException.php file core/lib/Drupal/Core/Database/SchemaException.php
SchemaIncompleteException class core/lib/Drupal/Core/Config/Schema/SchemaIncompleteException.php An exception thrown when a config schema is incomplete.
SchemaIncompleteException.php file core/lib/Drupal/Core/Config/Schema/SchemaIncompleteException.php
SchemaInspector class core/tests/Drupal/TestTools/Extension/SchemaInspector.php Provides methods to access modules' schema.
SchemaInspector.php file core/tests/Drupal/TestTools/Extension/SchemaInspector.php
SchemaInspector::getTableNames function core/tests/Drupal/TestTools/Extension/SchemaInspector.php Returns the module's schema table names.
SchemaInspector::getTablesSpecification function core/tests/Drupal/TestTools/Extension/SchemaInspector.php Returns the module's schema specification.
SchemaIntrospectionTestTrait trait core/tests/Drupal/Tests/Core/Database/SchemaIntrospectionTestTrait.php Provides methods for testing database schema characteristics.
SchemaIntrospectionTestTrait.php file core/tests/Drupal/Tests/Core/Database/SchemaIntrospectionTestTrait.php
SchemaIntrospectionTestTrait::assertIndexOnColumns function core/tests/Drupal/Tests/Core/Database/SchemaIntrospectionTestTrait.php Checks that an index covering exactly the given column names exists.
SchemaIntrospectionTestTrait::assertNoIndexOnColumns function core/tests/Drupal/Tests/Core/Database/SchemaIntrospectionTestTrait.php Checks that an index covering exactly the given column names doesn't exist.
SchemaIntrospectionTestTrait::getIndexColumnNames function core/tests/Drupal/Tests/Core/Database/SchemaIntrospectionTestTrait.php Returns the column names used by the indexes of a table.
SchemaListenerController class core/modules/config/tests/config_test/src/SchemaListenerController.php Controller for testing \Drupal\Core\Config\Development\ConfigSchemaChecker.
SchemaListenerController.php file core/modules/config/tests/config_test/src/SchemaListenerController.php
SchemaListenerController::test function core/modules/config/tests/config_test/src/SchemaListenerController.php Tests the BrowserTestBase tests can use strict schema checking.
SchemaListenerController::__construct function core/modules/config/tests/config_test/src/SchemaListenerController.php Constructs the SchemaListenerController object.
SchemaObjectDoesNotExistException class core/lib/Drupal/Core/Database/SchemaObjectDoesNotExistException.php Exception thrown if an object being modified doesn't exist yet.
SchemaObjectDoesNotExistException.php file core/lib/Drupal/Core/Database/SchemaObjectDoesNotExistException.php
SchemaObjectExistsException class core/lib/Drupal/Core/Database/SchemaObjectExistsException.php Exception thrown if an object being created already exists.
SchemaObjectExistsException.php file core/lib/Drupal/Core/Database/SchemaObjectExistsException.php
SchemaPrimaryKeyMustBeDroppedException class core/lib/Drupal/Core/Database/Exception/SchemaPrimaryKeyMustBeDroppedException.php Exception thrown if the Primary Key must be dropped before an operation.
SchemaPrimaryKeyMustBeDroppedException.php file core/lib/Drupal/Core/Database/Exception/SchemaPrimaryKeyMustBeDroppedException.php
SchemaTableColumnSizeTooLargeException class core/lib/Drupal/Core/Database/Exception/SchemaTableColumnSizeTooLargeException.php Exception thrown if a column size is too large on table creation.
SchemaTableColumnSizeTooLargeException.php file core/lib/Drupal/Core/Database/Exception/SchemaTableColumnSizeTooLargeException.php
SchemaTableKeyTooLargeException class core/lib/Drupal/Core/Database/Exception/SchemaTableKeyTooLargeException.php Exception thrown if a key is too large.
SchemaTableKeyTooLargeException.php file core/lib/Drupal/Core/Database/Exception/SchemaTableKeyTooLargeException.php
SchemaTest class core/modules/mysql/tests/src/Kernel/mysql/SchemaTest.php Tests schema API for the MySQL driver.
SchemaTest class core/modules/pgsql/tests/src/Unit/SchemaTest.php Tests Drupal\pgsql\Driver\Database\pgsql\Schema.
SchemaTest class core/modules/pgsql/tests/src/Kernel/pgsql/SchemaTest.php Tests schema API for the PostgreSQL driver.
SchemaTest class core/modules/mysqli/tests/src/Kernel/mysqli/SchemaTest.php Tests schema API for the MySQL driver.
SchemaTest class core/modules/sqlite/tests/src/Kernel/sqlite/SchemaTest.php Tests schema API for the SQLite driver.
SchemaTest.php file core/modules/sqlite/tests/src/Kernel/sqlite/SchemaTest.php

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