summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authorAdrian Macneil <adrian@crescendo.net.nz>2011-09-22 20:17:58 +0200
committerAdrian Macneil <adrian@crescendo.net.nz>2011-09-22 20:17:58 +0200
commit19277f05c20a3de4beaebcac722659a0ed30a374 (patch)
tree4b4962a2245dc7eb7d4bc06bde24545bc76f53e8 /user_guide
parent10c0117188e026ba156f0aa02923ef9c17f17230 (diff)
Documented third $after_field parameter of dbforge->add_column()
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/database/forge.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/user_guide/database/forge.html b/user_guide/database/forge.html
index 6b8709892..528d1a24c 100644
--- a/user_guide/database/forge.html
+++ b/user_guide/database/forge.html
@@ -201,6 +201,10 @@ already be running, since the forge class relies on it.</p>
$this-&gt;dbforge-&gt;add_column('table_name', $fields);<br />
<br />
// gives ALTER TABLE table_name ADD preferences TEXT</code></p>
+<p>An optional third parameter can be used to specify which existing column to add the new column after.</p>
+<p><code>
+$this-&gt;dbforge-&gt;add_column('table_name', $fields, 'after_field');
+</code></p>
<h2>$this-&gt;dbforge-&gt;drop_column()</h2>
<p>Used to remove a column from a table. </p>
<p><code>$this-&gt;dbforge-&gt;drop_column('table_name', 'column_to_drop');</code></p>