From 19277f05c20a3de4beaebcac722659a0ed30a374 Mon Sep 17 00:00:00 2001
From: Adrian Macneil
Date: Thu, 22 Sep 2011 11:17:58 -0700
Subject: Documented third $after_field parameter of dbforge->add_column()
---
user_guide/database/forge.html | 4 ++++
1 file changed, 4 insertions(+)
(limited to 'user_guide/database/forge.html')
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.
$this->dbforge->add_column('table_name', $fields);
// gives ALTER TABLE table_name ADD preferences TEXT
+An optional third parameter can be used to specify which existing column to add the new column after.
+
+$this->dbforge->add_column('table_name', $fields, 'after_field');
+
$this->dbforge->drop_column()
Used to remove a column from a table.
$this->dbforge->drop_column('table_name', 'column_to_drop');
--
cgit v1.2.3-24-g4f1b