2007-09-13 16:55:32 +00:00
|
|
|
<?php
|
2007-09-19 16:26:28 +00:00
|
|
|
require_once('playground.php');
|
2007-10-08 15:58:23 +00:00
|
|
|
|
2007-10-08 18:40:14 +00:00
|
|
|
$dbh = new PDO('mysql:host=localhost;dbname=test', 'jwage', 'elite1baller');
|
|
|
|
$conn = Doctrine_Manager::connection($dbh);
|
|
|
|
$manager = Doctrine_Manager::getInstance();
|
2007-10-08 15:58:23 +00:00
|
|
|
|
2007-10-08 18:40:14 +00:00
|
|
|
//Doctrine::loadModels('test_models');
|
|
|
|
|
|
|
|
$import = new Doctrine_Import_Schema();
|
|
|
|
$import->generateBaseClasses(true);
|
|
|
|
$import->importSchema('schema.yml', 'yml', 'test_models');
|