Skip to content

Commit 5876539

Browse files
committed
docs: change lowercase to uppercase
1 parent 63d3bf6 commit 5876539

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

user_guide_src/source/dbmgmt/forge.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Initializing the Forge Class
1313
****************************
1414

1515
.. important:: In order to initialize the Forge class, your database
16-
driver must already be running, since the forge class relies on it.
16+
driver must already be running, since the Forge class relies on it.
1717

1818
Load the Forge Class as follows::
1919

@@ -91,7 +91,7 @@ There are several things you may wish to do when creating tables. Add
9191
fields, add keys to the table, alter columns. CodeIgniter provides a
9292
mechanism for this.
9393

94-
Adding fields
94+
Adding Fields
9595
=============
9696

9797
Fields are normally created via an associative array. Within the array, you must
@@ -243,7 +243,7 @@ You can specify the desired action for the "on delete" and "on update" propertie
243243
$forge->addForeignKey(['users_id', 'users_name'], 'users', ['id', 'name'], 'CASCADE', 'CASCADE');
244244
// gives CONSTRAINT `TABLENAME_users_foreign` FOREIGN KEY(`users_id`, `users_name`) REFERENCES `users`(`id`, `name`) ON DELETE CASCADE ON UPDATE CASCADE
245245

246-
Creating a table
246+
Creating a Table
247247
================
248248

249249
After fields and keys have been declared, you can create a new table
@@ -272,7 +272,7 @@ You could also pass optional table attributes, such as MySQL's ``ENGINE``::
272272
``createTable()`` will always add them with your configured *charset*
273273
and *DBCollat* values, as long as they are not empty (MySQL only).
274274

275-
Dropping a table
275+
Dropping a Table
276276
================
277277

278278
Execute a ``DROP TABLE`` statement and optionally add an ``IF EXISTS`` clause.
@@ -314,7 +314,7 @@ Execute a DROP KEY.
314314
// Produces: DROP INDEX `users_index` ON `tablename`
315315
$forge->dropKey('tablename', 'users_index');
316316

317-
Renaming a table
317+
Renaming a Table
318318
================
319319

320320
Executes a TABLE rename
@@ -419,7 +419,7 @@ Class Reference
419419
:returns: \CodeIgniter\Database\Forge instance (method chaining)
420420
:rtype: \CodeIgniter\Database\Forge
421421

422-
Adds a field to the set that will be used to create a table. Usage: See `Adding fields`_.
422+
Adds a field to the set that will be used to create a table. Usage: See `Adding Fields`_.
423423

424424
.. php:method:: addForeignKey($fieldName, $tableName, $tableField[, $onUpdate = '', $onDelete = ''])
425425
@@ -476,7 +476,7 @@ Class Reference
476476
:returns: Query object on success, false on failure
477477
:rtype: mixed
478478

479-
Creates a new table. Usage: See `Creating a table`_.
479+
Creates a new table. Usage: See `Creating a Table`_.
480480

481481
.. php:method:: dropColumn($table, $column_name)
482482
@@ -502,7 +502,7 @@ Class Reference
502502
:returns: true on success, false on failure
503503
:rtype: bool
504504

505-
Drops a table. Usage: See `Dropping a table`_.
505+
Drops a table. Usage: See `Dropping a Table`_.
506506

507507
.. php:method:: modifyColumn($table, $field)
508508
@@ -520,4 +520,4 @@ Class Reference
520520
:returns: Query object on success, false on failure
521521
:rtype: mixed
522522

523-
Renames a table. Usage: See `Renaming a table`_.
523+
Renames a table. Usage: See `Renaming a Table`_.

0 commit comments

Comments
 (0)