| Schema::addField |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Add a new field to a table. |
| Schema::addField |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Add a new field to a table. |
| 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::changeField |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Change a field definition. |
| Schema::changeField |
function |
core/lib/Drupal/Core/Database/Schema.php |
Change a field definition. |
| Schema::changeField |
function |
core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php |
Change a field definition. |
| 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::createFieldSql |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Create an SQL string for a field to be used in table creation or alteration. |
| Schema::createFieldSql |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Schema.php |
Create an SQL string for a field to be used in table creation or alteration. |
| Schema::dropField |
function |
core/modules/sqlite/src/Driver/Database/sqlite/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::dropField |
function |
core/lib/Drupal/Core/Database/Schema.php |
Drop a field. |
| Schema::dropField |
function |
core/modules/mysql/src/Driver/Database/mysql/Schema.php |
Drop a field. |
| Schema::dropField |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Schema.php |
Drop a field. |
| 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/modules/sqlite/src/Driver/Database/sqlite/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::fieldNames |
function |
core/lib/Drupal/Core/Database/Schema.php |
Return an array of field names from an array of key/index column specifiers. |
| Schema::getFieldTypeMap |
function |
core/lib/Drupal/Core/Database/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/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/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/sqlite/src/Driver/Database/sqlite/Schema.php |
Returns a mapping of Drupal schema field names to DB-native field types. |
| 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. |
| SchemaTest::assertFieldAdditionRemoval |
function |
core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php |
Asserts that a given field can be added and removed from a table. |
| SchemaTest::assertFieldChange |
function |
core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php |
Asserts that a field can be changed from one spec to another. |
| SchemaTest::assertFieldCharacteristics |
function |
core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php |
Asserts that a newly added field has the correct characteristics. |
| SchemaTest::testSchemaAddFieldDefaultInitial |
function |
core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php |
Tests adding columns to an existing table with default and initial value. |
| SchemaTest::testSchemaChangeFieldDefaultInitial |
function |
core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php |
Tests changing columns between types with default and initial values. |
| SearchPage::fields |
function |
core/modules/search/src/Plugin/migrate/source/d6/SearchPage.php |
Returns available fields on the source. |
| SearchPage::fields |
function |
core/modules/search/src/Plugin/migrate/source/d7/SearchPage.php |
Returns available fields on the source. |
| SecurityAdvisoryTest::providerCreateFromArrayInvalidField |
function |
core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php |
Data provider for testCreateFromArrayInvalidField(). |
| SecurityAdvisoryTest::providerCreateFromArrayMissingField |
function |
core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php |
Data provider for testCreateFromArrayMissingField(). |
| SecurityAdvisoryTest::testCreateFromArrayInvalidField |
function |
core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php |
Tests exceptions for invalid field types. |
| SecurityAdvisoryTest::testCreateFromArrayMissingField |
function |
core/modules/system/tests/src/Unit/SecurityAdvisories/SecurityAdvisoryTest.php |
Tests exceptions with missing fields. |
| Select::$fields |
property |
core/lib/Drupal/Core/Database/Query/Select.php |
The fields to SELECT. |
| Select::addField |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Adds a field to the list to be SELECTed. |
| Select::escapeField |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Escapes a field name string. |
| Select::fields |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Add multiple fields from the same table to be SELECTed. |
| Select::getFields |
function |
core/lib/Drupal/Core/Database/Query/Select.php |
Returns a reference to the fields array for this query. |
| SelectComplexTest::testCountQueryFieldRemovals |
function |
core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php |
Tests that countQuery properly removes fields and expressions. |
| SelectExtender::addField |
function |
core/lib/Drupal/Core/Database/Query/SelectExtender.php |
Adds a field to the list to be SELECTed. |
| SelectExtender::escapeField |
function |
core/lib/Drupal/Core/Database/Query/SelectExtender.php |
Escapes a field name string. |
| SelectExtender::fields |
function |
core/lib/Drupal/Core/Database/Query/SelectExtender.php |
Add multiple fields from the same table to be SELECTed. |
| SelectExtender::getFields |
function |
core/lib/Drupal/Core/Database/Query/SelectExtender.php |
Returns a reference to the fields array for this query. |
| SelectInterface::addField |
function |
core/lib/Drupal/Core/Database/Query/SelectInterface.php |
Adds a field to the list to be SELECTed. |