From a336d424f77f11f13d6c57114776b35fc7f8f8fd Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 27 Feb 2007 16:14:59 +0000 Subject: [PATCH] --- ...g started - Exporting classes - Export options.php | 11 +++++++++++ ...mapping - Constraints and validators - Notnull.php | 4 ++++ 2 files changed, 15 insertions(+) create mode 100644 manual/docs/Getting started - Exporting classes - Export options.php diff --git a/manual/docs/Getting started - Exporting classes - Export options.php b/manual/docs/Getting started - Exporting classes - Export options.php new file mode 100644 index 000000000..d6331c936 --- /dev/null +++ b/manual/docs/Getting started - Exporting classes - Export options.php @@ -0,0 +1,11 @@ + +// 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); + + diff --git a/manual/docs/Object relational mapping - Constraints and validators - Notnull.php b/manual/docs/Object relational mapping - Constraints and validators - Notnull.php index 57bb08f88..ca1a38a06 100644 --- a/manual/docs/Object relational mapping - Constraints and validators - Notnull.php +++ b/manual/docs/Object relational mapping - Constraints and validators - Notnull.php @@ -17,3 +17,7 @@ class User extends Doctrine_Record When this class gets exported to database the following Sql statement would get executed (in Mysql): CREATE TABLE user (name VARCHAR(200) NOT NULL, PRIMARY KEY(name)) + +The notnull constraint also acts as an application level validator. This means that if Doctrine validators are turned on, Doctrine will automatically check that specified columns do not contain null values when saved. + +If those columns happen to contain null values Doctrine_Validator_Exception is raised.