Skip to content

Commit

Permalink
docs: remove unneeded space
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Feb 9, 2023
1 parent 73d6d62 commit 6af6a85
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions user_guide_src/source/dbmgmt/forge.rst
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ Class Reference
:returns: ``\CodeIgniter\Database\Forge`` instance (method chaining)
:rtype: ``\CodeIgniter\Database\Forge``

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

.. php:method:: addForeignKey($fieldName, $tableName, $tableField[, $onUpdate = '', $onDelete = '', $fkName = ''])
Expand All @@ -371,7 +371,7 @@ Class Reference
:returns: ``\CodeIgniter\Database\Forge`` instance (method chaining)
:rtype: ``\CodeIgniter\Database\Forge``

Adds a foreign key to the set that will be used to create a table. Usage: See `Adding Foreign Keys`_.
Adds a foreign key to the set that will be used to create a table. Usage: See `Adding Foreign Keys`_.

.. note:: ``$fkName`` can be used since v4.3.0.

Expand All @@ -384,7 +384,7 @@ Class Reference
:returns: ``\CodeIgniter\Database\Forge`` instance (method chaining)
:rtype: ``\CodeIgniter\Database\Forge``

Adds a key to the set that will be used to create a table. Usage: See `Adding Keys`_.
Adds a key to the set that will be used to create a table. Usage: See `Adding Keys`_.

.. note:: ``$keyName`` can be used since v4.3.0.

Expand All @@ -395,7 +395,7 @@ Class Reference
:returns: ``\CodeIgniter\Database\Forge`` instance (method chaining)
:rtype: ``\CodeIgniter\Database\Forge``

Adds a primary key to the set that will be used to create a table. Usage: See `Adding Keys`_.
Adds a primary key to the set that will be used to create a table. Usage: See `Adding Keys`_.

.. note:: ``$keyName`` can be used since v4.3.0.

Expand All @@ -406,7 +406,7 @@ Class Reference
:returns: ``\CodeIgniter\Database\Forge`` instance (method chaining)
:rtype: ``\CodeIgniter\Database\Forge``

Adds a unique key to the set that will be used to create a table. Usage: See `Adding Keys`_.
Adds a unique key to the set that will be used to create a table. Usage: See `Adding Keys`_.

.. note:: ``$keyName`` can be used since v4.3.0.

Expand All @@ -417,7 +417,7 @@ Class Reference
:returns: true on success, false on failure
:rtype: bool

Creates a new database. Usage: See `Creating and Dropping Databases`_.
Creates a new database. Usage: See `Creating and Dropping Databases`_.

.. php:method:: createTable($table[, $if_not_exists = false[, array $attributes = []]])
Expand All @@ -427,7 +427,7 @@ Class Reference
:returns: Query object on success, false on failure
:rtype: mixed

Creates a new table. Usage: See `Creating a Table`_.
Creates a new table. Usage: See `Creating a Table`_.

.. php:method:: dropColumn($table, $column_name)
Expand All @@ -436,15 +436,15 @@ Class Reference
:returns: true on success, false on failure
:rtype: bool

Drops single or multiple columns from a table. Usage: See `Dropping Fields From a Table`_.
Drops single or multiple columns from a table. Usage: See `Dropping Fields From a Table`_.

.. php:method:: dropDatabase($dbName)
:param string $dbName: Name of the database to drop
:returns: true on success, false on failure
:rtype: bool

Drops a database. Usage: See `Creating and Dropping Databases`_.
Drops a database. Usage: See `Creating and Dropping Databases`_.

.. php:method:: dropKey($table, $keyName[, $prefixKeyName = true])
Expand Down Expand Up @@ -476,7 +476,7 @@ Class Reference
:returns: true on success, false on failure
:rtype: bool

Drops a table. Usage: See `Dropping a Table`_.
Drops a table. Usage: See `Dropping a Table`_.

.. php:method:: processIndexes($table)
Expand All @@ -497,7 +497,7 @@ Class Reference
:returns: true on success, false on failure
:rtype: bool

Modifies a table column. Usage: See `Modifying a Field in a Table`_.
Modifies a table column. Usage: See `Modifying a Field in a Table`_.

.. php:method:: renameTable($table_name, $new_table_name)
Expand All @@ -506,4 +506,4 @@ Class Reference
:returns: Query object on success, false on failure
:rtype: mixed

Renames a table. Usage: See `Renaming a Table`_.
Renames a table. Usage: See `Renaming a Table`_.

0 comments on commit 6af6a85

Please sign in to comment.