1
0
mirror of synced 2025-01-08 10:07:10 +03:00
doctrine2/manual/new/docs/en/getting-started/exporting-classes.txt

19 lines
474 B
Plaintext
Raw Normal View History

2007-06-13 02:18:21 +04:00
+++ Introduction
+++ Export options
<code type='php'>
// export everything, table definitions and constraints
$manager->setAttribute(Doctrine::ATTR_EXPORT, Doctrine::EXPORT_ALL);
// export classes without constraints
$manager->setAttribute(Doctrine::ATTR_EXPORT, Doctrine::EXPORT_TABLES ^
Doctrine::EXPORT_CONSTRAINTS);
// turn off exporting
$manager->setAttribute(Doctrine::ATTR_EXPORT, Doctrine::EXPORT_NONE);
</code>