Search for schema

  1. Search 7.x for schema
  2. Search 9.5.x for schema
  3. Search 8.9.x for schema
  4. Search 11.x for schema
  5. Other projects

Exact matches

These are exact matches according to your search
Title Object type File name Summary
Schema class core/modules/sqlite/src/Driver/Database/sqlite/Schema.php SQLite implementation of \Drupal\Core\Database\Schema.
Schema class core/modules/mysql/src/Driver/Database/mysql/Schema.php MySQL implementation of \Drupal\Core\Database\Schema.
Schema class core/modules/pgsql/src/Driver/Database/pgsql/Schema.php PostgreSQL implementation of \Drupal\Core\Database\Schema.
Schema class core/tests/Drupal/Tests/Core/Database/Stub/Driver/Schema.php A very minimal class for testing purposes.
Schema class core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Schema.php CoreFakeWithAllCustomClasses implementation of \Drupal\Core\Database\Schema.
Schema class core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php SQLite implementation of \Drupal\Core\Database\Schema.
Schema class core/lib/Drupal/Core/Database/Driver/mysql/Schema.php MySQL implementation of \Drupal\Core\Database\Schema.
Schema class core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php PostgreSQL implementation of \Drupal\Core\Database\Schema.
Schema class core/lib/Drupal/Core/Database/Schema.php Provides a base implementation for Database Schema.

All search results

Title Object type File name Summary
Schema::escapeDefaultValue function core/lib/Drupal/Core/Database/Schema.php Escapes a value to be used as the default value on a column.
Schema::extensionExists function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Determines whether the PostgreSQL extension is created.
Schema::fieldExists function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Check if a column exists in the given table.
Schema::fieldExists function core/lib/Drupal/Core/Database/Schema.php Check if a column exists in the given table.
Schema::fieldExists function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Check if a column exists in the given table.
Schema::fieldNames function core/lib/Drupal/Core/Database/Schema.php Return an array of field names from an array of key/index column specifiers.
Schema::findPrimaryKeyColumns function core/lib/Drupal/Core/Database/Schema.php Finds the primary key columns of a table, from the database.
Schema::findPrimaryKeyColumns function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Finds the primary key columns of a table, from the database.
Schema::findPrimaryKeyColumns function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Finds the primary key columns of a table, from the database.
Schema::findPrimaryKeyColumns function core/modules/mysql/src/Driver/Database/mysql/Schema.php Finds the primary key columns of a table, from the database.
Schema::findTables function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Finds all tables that are like the specified base table name.
Schema::findTables function core/lib/Drupal/Core/Database/Schema.php Finds all tables that are like the specified base table name.
Schema::findTables function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Finds all tables that are like the specified base table name.
Schema::getComment function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Retrieve a table or column comment.
Schema::getComment function core/modules/mysql/src/Driver/Database/mysql/Schema.php Retrieve a table or column comment.
Schema::getFieldTypeMap function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Returns a mapping of Drupal schema field names to DB-native field types.
Schema::getFieldTypeMap function core/modules/mysql/src/Driver/Database/mysql/Schema.php Returns a mapping of Drupal schema field names to DB-native field types.
Schema::getFieldTypeMap function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Returns a mapping of Drupal schema field names to DB-native field types.
Schema::getFieldTypeMap function core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Schema.php Returns a mapping of Drupal schema field names to DB-native field types.
Schema::getFieldTypeMap function core/lib/Drupal/Core/Database/Schema.php Returns a mapping of Drupal schema field names to DB-native field types.
Schema::getNormalizedIndexes function core/modules/mysql/src/Driver/Database/mysql/Schema.php Gets normalized indexes from a table specification.
Schema::getPrefixInfo function core/modules/mysql/src/Driver/Database/mysql/Schema.php Get information about the table and database name from the prefix.
Schema::getPrefixInfo function core/lib/Drupal/Core/Database/Schema.php Get information about the table name and schema from the prefix.
Schema::getSequenceName function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Retrieves a sequence name that is owned by the table and column..
Schema::getTempNamespaceName function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Gets PostgreSQL's temporary namespace name.
Schema::hashBase64 function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Calculates a base-64 encoded PostgreSQL-safe sha-256 hash.
Schema::indexExists function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Checks if an index exists in the given table.
Schema::indexExists function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Checks if an index exists in the given table.
Schema::indexExists function core/modules/mysql/src/Driver/Database/mysql/Schema.php Checks if an index exists in the given table.
Schema::indexExists function core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Schema.php Checks if an index exists in the given table.
Schema::indexExists function core/lib/Drupal/Core/Database/Schema.php Checks if an index exists in the given table.
Schema::introspectIndexSchema function core/lib/Drupal/Core/Database/Schema.php Finds the columns for the primary key, unique keys and indexes of a table.
Schema::introspectIndexSchema function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Finds the columns for the primary key, unique keys and indexes of a table.
Schema::introspectIndexSchema function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Finds the columns for the primary key, unique keys and indexes of a table.
Schema::introspectIndexSchema function core/modules/mysql/src/Driver/Database/mysql/Schema.php Finds the columns for the primary key, unique keys and indexes of a table.
Schema::introspectSchema function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Find out the schema of a table.
Schema::mapKeyDefinition function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Utility method: rename columns in an index definition according to a new mapping.
Schema::nextPlaceholder function core/lib/Drupal/Core/Database/Schema.php
Schema::prefixNonTable function core/lib/Drupal/Core/Database/Schema.php Create names for indexes, primary keys and constraints.
Schema::prepareComment function core/lib/Drupal/Core/Database/Schema.php Prepare a table or column comment for database query.
Schema::prepareComment function core/modules/mysql/src/Driver/Database/mysql/Schema.php Prepare a table or column comment for database query.
Schema::processField function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Set database-engine specific properties for a field.
Schema::processField function core/modules/mysql/src/Driver/Database/mysql/Schema.php Set database-engine specific properties for a field.
Schema::processField function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Set database-engine specific properties for a field.
Schema::queryFieldInformation function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Fetches the list of constraints used on a field.
Schema::queryTableInformation function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Fetch the list of blobs and sequences used on a table.
Schema::renameTable function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Rename a table.
Schema::renameTable function core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Schema.php Rename a table.
Schema::renameTable function core/lib/Drupal/Core/Database/Schema.php Rename a table.
Schema::renameTable function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Rename a table.

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