UpdateDatabase.php
authorEdward <edward@roojs.com>
Wed, 22 May 2013 11:51:59 +0000 (19:51 +0800)
committerEdward <edward@roojs.com>
Wed, 22 May 2013 11:51:59 +0000 (19:51 +0800)
UpdateDatabase.php

index 5e953ef..ad896d2 100644 (file)
@@ -104,16 +104,7 @@ class Pman_Core_UpdateDatabase extends Pman
                 die("Missing company name or type! Try --name=[the name of company] -- comptype=[the type of company] \n");
             }
             
-           // DB_DataObject::factory('companies')->initCompanies(HTML_Flexyframework::get()->page, $opt['name'], $opt['comptype']);
-            $companies = DB_DataObject::factory('companies');
-            $companies->setFrom(array(
-                'name' => $opt['name'],
-                'comptype' => $opt['comptype']
-            ));
-
-            $companies->insert();
-            print_r($companies);exit;
-            $companies->onInsert(array(), '');
+            DB_DataObject::factory('companies')->initCompanies(HTML_Flexyframework::get()->page, $opt['name'], $opt['comptype']);
             
             die("DONE! \n");
         }