Changeset 3066 for trunk/lib/Doctrine.php
- Timestamp:
- 11/02/07 16:07:11 (14 months ago)
- Files:
-
- 1 modified
-
trunk/lib/Doctrine.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Doctrine.php
r3055 r3066 652 652 653 653 /** 654 * createTablesFromArray 655 * 656 * Creates database tables for the models in the supplied array 657 * 658 * @param array $array An array of models to be exported 659 * @return void 660 */ 661 public static function createTablesFromArray($array) 662 { 663 return Doctrine_Manager::connection()->export->exportClasses($array); 664 } 665 666 /** 654 667 * generateSqlFromModels 655 668 *