2007-09-13 20:55:32 +04:00
|
|
|
<?php
|
2007-09-19 20:26:28 +04:00
|
|
|
require_once('playground.php');
|
|
|
|
require_once('connection.php');
|
2007-09-20 19:02:07 +04:00
|
|
|
require_once('models.php');
|
2007-09-22 00:30:10 +04:00
|
|
|
require_once('data.php');
|
|
|
|
|
|
|
|
$tables['Test'] = 'Test';
|
|
|
|
|
|
|
|
$import = new Doctrine_Import_Schema();
|
|
|
|
$import->importSchema('../tests/schema.yml', 'yml', 'test_models', $tables);
|