| Schema::addPrimaryKey |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Add a primary key. |
| Schema::addPrimaryKey |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Add a primary key. |
| Schema::addPrimaryKey |
function |
core/lib/Drupal/Core/Database/Schema.php |
Add a primary key. |
| Schema::addUniqueKey |
function |
core/lib/Drupal/Core/Database/Schema.php |
Add a unique key. |
| Schema::addUniqueKey |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Add a unique key. |
| Schema::addUniqueKey |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Add a unique key. |
| Schema::addUniqueKey |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Add a unique key. |
| Schema::alterTable |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Create a table with a new schema containing the old content. |
| Schema::buildTableNameCondition |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Builds a condition to match a table name with the information schema. |
| Schema::buildTableNameCondition |
function |
core/lib/Drupal/Core/Database/Schema.php |
Builds a condition to match a table name against the information_schema. |
| Schema::changeField |
function |
core/lib/Drupal/Core/Database/Schema.php |
Change a field definition. |
| Schema::changeField |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Change a field definition. |
| Schema::changeField |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Change a field definition. |
| Schema::changeField |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Change a field definition. |
| Schema::COMMENT_MAX_COLUMN |
constant |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Maximum length of a column comment in MySQL. |
| Schema::COMMENT_MAX_TABLE |
constant |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Maximum length of a table comment in MySQL. |
| Schema::constraintExists |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Helper function: check if a constraint (PK, FK, UK) exists. |
| Schema::createColumnsSql |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Build the SQL expression for creating columns. |
| Schema::createFieldSql |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Create an SQL string for a field to be used in table create or alter. |
| Schema::createFieldSql |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Creates an SQL string for a field used in table creation or alteration. |
| Schema::createFieldSql |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Creates a safe SQL string for a field for table creation or alteration. |
| Schema::createIndexSql |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Build the SQL expression for indexes. |
| Schema::createKeySql |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Build the SQL expression for keys. |
| Schema::createKeySql |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Creates an SQL key for the given fields. |
| Schema::createKeysSql |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Creates the keys for an SQL table. |
| Schema::createPrimaryKeySql |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Create the SQL expression for primary and unique keys. |
| Schema::createSchemaFromDefinition |
function |
core/lib/Drupal/Core/Database/Schema.php |
Creates the tables in a schema definition. |
| Schema::createTable |
function |
core/lib/Drupal/Core/Database/Schema.php |
Create a new table from a Drupal array table definition. |
| Schema::createTableFromDefinition |
function |
core/lib/Drupal/Core/Database/Schema.php |
Creates a new table from a table schema definition. |
| Schema::createTableSql |
function |
core/lib/Drupal/Core/Database/Schema.php |
Generate SQL to create a new table from a Drupal schema definition. |
| 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::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/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/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::dropUniqueKey |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Drop a unique key. |