@@ -358,7 +358,7 @@ Class Reference
358358 :returns: ``\CodeIgniter\Database\Forge `` instance (method chaining)
359359 :rtype: ``\CodeIgniter\Database\Forge ``
360360
361- Adds a field to the set that will be used to create a table. Usage: See `Adding Fields `_.
361+ Adds a field to the set that will be used to create a table. Usage: See `Adding Fields `_.
362362
363363 .. php :method :: addForeignKey($fieldName, $tableName, $tableField[, $onUpdate = '', $onDelete = '', $fkName = ''])
364364
@@ -371,7 +371,7 @@ Class Reference
371371 :returns: ``\CodeIgniter\Database\Forge `` instance (method chaining)
372372 :rtype: ``\CodeIgniter\Database\Forge ``
373373
374- Adds a foreign key to the set that will be used to create a table. Usage: See `Adding Foreign Keys `_.
374+ Adds a foreign key to the set that will be used to create a table. Usage: See `Adding Foreign Keys `_.
375375
376376 .. note :: ``$fkName`` can be used since v4.3.0.
377377
@@ -384,7 +384,7 @@ Class Reference
384384 :returns: ``\CodeIgniter\Database\Forge `` instance (method chaining)
385385 :rtype: ``\CodeIgniter\Database\Forge ``
386386
387- Adds a key to the set that will be used to create a table. Usage: See `Adding Keys `_.
387+ Adds a key to the set that will be used to create a table. Usage: See `Adding Keys `_.
388388
389389 .. note :: ``$keyName`` can be used since v4.3.0.
390390
@@ -395,7 +395,7 @@ Class Reference
395395 :returns: ``\CodeIgniter\Database\Forge `` instance (method chaining)
396396 :rtype: ``\CodeIgniter\Database\Forge ``
397397
398- Adds a primary key to the set that will be used to create a table. Usage: See `Adding Keys `_.
398+ Adds a primary key to the set that will be used to create a table. Usage: See `Adding Keys `_.
399399
400400 .. note :: ``$keyName`` can be used since v4.3.0.
401401
@@ -406,7 +406,7 @@ Class Reference
406406 :returns: ``\CodeIgniter\Database\Forge `` instance (method chaining)
407407 :rtype: ``\CodeIgniter\Database\Forge ``
408408
409- Adds a unique key to the set that will be used to create a table. Usage: See `Adding Keys `_.
409+ Adds a unique key to the set that will be used to create a table. Usage: See `Adding Keys `_.
410410
411411 .. note :: ``$keyName`` can be used since v4.3.0.
412412
@@ -417,7 +417,7 @@ Class Reference
417417 :returns: true on success, false on failure
418418 :rtype: bool
419419
420- Creates a new database. Usage: See `Creating and Dropping Databases `_.
420+ Creates a new database. Usage: See `Creating and Dropping Databases `_.
421421
422422 .. php :method :: createTable($table[, $if_not_exists = false[, array $attributes = []]])
423423
@@ -427,7 +427,7 @@ Class Reference
427427 :returns: Query object on success, false on failure
428428 :rtype: mixed
429429
430- Creates a new table. Usage: See `Creating a Table `_.
430+ Creates a new table. Usage: See `Creating a Table `_.
431431
432432 .. php :method :: dropColumn($table, $column_name)
433433
@@ -436,15 +436,15 @@ Class Reference
436436 :returns: true on success, false on failure
437437 :rtype: bool
438438
439- Drops single or multiple columns from a table. Usage: See `Dropping Fields From a Table `_.
439+ Drops single or multiple columns from a table. Usage: See `Dropping Fields From a Table `_.
440440
441441 .. php :method :: dropDatabase($dbName)
442442
443443 :param string $dbName: Name of the database to drop
444444 :returns: true on success, false on failure
445445 :rtype: bool
446446
447- Drops a database. Usage: See `Creating and Dropping Databases `_.
447+ Drops a database. Usage: See `Creating and Dropping Databases `_.
448448
449449 .. php :method :: dropKey($table, $keyName[, $prefixKeyName = true])
450450
@@ -476,7 +476,7 @@ Class Reference
476476 :returns: true on success, false on failure
477477 :rtype: bool
478478
479- Drops a table. Usage: See `Dropping a Table `_.
479+ Drops a table. Usage: See `Dropping a Table `_.
480480
481481 .. php :method :: processIndexes($table)
482482
@@ -497,7 +497,7 @@ Class Reference
497497 :returns: true on success, false on failure
498498 :rtype: bool
499499
500- Modifies a table column. Usage: See `Modifying a Field in a Table `_.
500+ Modifies a table column. Usage: See `Modifying a Field in a Table `_.
501501
502502 .. php :method :: renameTable($table_name, $new_table_name)
503503
@@ -506,4 +506,4 @@ Class Reference
506506 :returns: Query object on success, false on failure
507507 :rtype: mixed
508508
509- Renames a table. Usage: See `Renaming a Table `_.
509+ Renames a table. Usage: See `Renaming a Table `_.
0 commit comments