]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix typo on params on Schema->createTable()
authorBrion Vibber <brion@pobox.com>
Fri, 15 Oct 2010 20:34:54 +0000 (13:34 -0700)
committerBrion Vibber <brion@pobox.com>
Fri, 15 Oct 2010 20:34:54 +0000 (13:34 -0700)
lib/schema.php

index 2793906a461657c6b8815dab66257a87969484b1..b5e452a6e828ec69cda38547f26dce9492ec6259 100644 (file)
@@ -119,14 +119,13 @@ class Schema
     /**
      * Creates a table with the given names and columns.
      *
-     * @param string $name    Name of the table
-     * @param array  $columns Array of ColumnDef objects
-     *                        for new table.
+     * @param string $tableName    Name of the table
+     * @param array  $def          Table definition array listing fields and indexes.
      *
      * @return boolean success flag
      */
 
-    public function createTable($name, $columns)
+    public function createTable($tableName, $def)
     {
         $statements = $this->buildCreateTable($tableName, $def);
         return $this->runSqlSet($statements);