From eea6b1647375654422e2cfe10317f2ccc04d7be4 Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon <yahgrp@poplarware.com> Date: Fri, 30 May 2014 15:56:24 -0700 Subject: [PATCH] Issue #2273337 by ducktape: Fix docs for add field methods for Schema and db_add_field() --- core/includes/database.inc | 4 ++-- core/lib/Drupal/Core/Database/Schema.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/includes/database.inc b/core/includes/database.inc index 8da1dd825b18..e1f4f3080b4f 100644 --- a/core/includes/database.inc +++ b/core/includes/database.inc @@ -731,7 +731,7 @@ function db_drop_table($table) { * will be set to the value of the key in all rows. This is most useful for * creating NOT NULL columns with no default value in existing tables. * @param $keys_new - * Optional keys and indexes specification to be created on the table along + * (optional) Keys and indexes specification to be created on the table along * with adding the field. The format is the same as a table specification, but * without the 'fields' element. If you are adding a type 'serial' field, you * MUST specify at least one key or index including it in this array. See @@ -911,7 +911,7 @@ function db_drop_index($table, $name) { * @param $spec * The field specification for the new field. * @param $keys_new - * Optional keys and indexes specification to be created on the table along + * (optional) Keys and indexes specification to be created on the table along * with changing the field. The format is the same as a table specification * but without the 'fields' element. */ diff --git a/core/lib/Drupal/Core/Database/Schema.php b/core/lib/Drupal/Core/Database/Schema.php index bf7107abb4a8..2cee9857951c 100644 --- a/core/lib/Drupal/Core/Database/Schema.php +++ b/core/lib/Drupal/Core/Database/Schema.php @@ -437,7 +437,7 @@ abstract public function copyTable($source, $destination); * This is most useful for creating NOT NULL columns with no default * value in existing tables. * @param $keys_new - * Optional keys and indexes specification to be created on the + * (optional) Keys and indexes specification to be created on the * table along with adding the field. The format is the same as a * table specification but without the 'fields' element. If you are * adding a type 'serial' field, you MUST specify at least one key @@ -651,7 +651,7 @@ abstract public function dropIndex($table, $name); * @param $spec * The field specification for the new field. * @param $keys_new - * Optional keys and indexes specification to be created on the + * (optional) Keys and indexes specification to be created on the * table along with changing the field. The format is the same as a * table specification but without the 'fields' element. * -- GitLab