1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/playground/models.php

26 lines
693 B
PHP
Raw Normal View History

2007-09-19 20:29:49 +04:00
<?php
Doctrine::loadModels('models');
$manager->setAttribute(Doctrine::ATTR_EXPORT, Doctrine::EXPORT_ALL);
$tables = array('entity',
'entityReference',
'email',
'phonenumber',
'groupuser',
'album',
'song',
'element',
'error',
'description',
'address',
'account',
'task',
'resource',
'assignment',
'resourceType',
'resourceReference');
$conn->export->exportClasses($tables);
require_once('data.php');