Search for schema

  1. Search 7.x for schema
  2. Search 8.9.x for schema
  3. Search 10.3.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/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Schema.php MySQL test implementation of \Drupal\Core\Database\Schema.
Schema class core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Schema.php MySQL test implementation of \Drupal\Core\Database\Schema.
Schema class core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Schema.php PostgreSQL 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/corefake/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.

All search results

Title Object type File name Summary
Schema::createTableSql function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Generate SQL to create a new table from a Drupal schema definition.
Schema::createTableSql function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Generate SQL to create a new table from a Drupal schema definition.
Schema::createTableSql function core/modules/mysql/src/Driver/Database/mysql/Schema.php Generate SQL to create a new table from a Drupal schema definition.
Schema::dropField function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Drop a field.
Schema::dropField function core/modules/mysql/src/Driver/Database/mysql/Schema.php Drop a field.
Schema::dropField function core/lib/Drupal/Core/Database/Schema.php Drop a field.
Schema::dropField function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Drop a field.
Schema::dropField function core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php Drop a field.
Schema::dropIndex function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Drop an index.
Schema::dropIndex function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Drop an index.
Schema::dropIndex function core/modules/mysql/src/Driver/Database/mysql/Schema.php Drop an index.
Schema::dropIndex function core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php Drop an index.
Schema::dropIndex function core/lib/Drupal/Core/Database/Schema.php Drop an index.
Schema::dropPrimaryKey function core/lib/Drupal/Core/Database/Schema.php Drop the primary key.
Schema::dropPrimaryKey function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Drop the primary key.
Schema::dropPrimaryKey function core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php Drop the primary key.
Schema::dropPrimaryKey function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Drop the primary key.
Schema::dropPrimaryKey function core/modules/mysql/src/Driver/Database/mysql/Schema.php Drop the primary key.
Schema::dropTable function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Drop a table.
Schema::dropTable function core/modules/mysql/src/Driver/Database/mysql/Schema.php Drop a table.
Schema::dropTable function core/lib/Drupal/Core/Database/Schema.php Drop a table.
Schema::dropTable function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Drop a table.
Schema::dropTable function core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php Drop a table.
Schema::dropUniqueKey function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Drop a unique key.
Schema::dropUniqueKey function core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php Drop a unique key.
Schema::dropUniqueKey function core/modules/sqlite/src/Driver/Database/sqlite/Schema.php Drop a unique key.
Schema::dropUniqueKey function core/modules/mysql/src/Driver/Database/mysql/Schema.php Drop a unique key.
Schema::dropUniqueKey function core/lib/Drupal/Core/Database/Schema.php Drop a unique key.
Schema::ensureIdentifiersLength function core/modules/pgsql/src/Driver/Database/pgsql/Schema.php Make sure to limit identifiers according to PostgreSQL compiled in length.
Schema::ensureNotNullPrimaryKey function core/lib/Drupal/Core/Database/Schema.php Ensures that all the primary key fields are correctly defined.
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/corefake/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.

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