From 75d4ddd141e5347963bec4c8a0f71ae519ddd782 Mon Sep 17 00:00:00 2001 From: zYne Date: Fri, 12 Jan 2007 00:40:50 +0000 Subject: [PATCH] --- ...tting table definition - Table options.php | 35 +++++++++++++++++++ manual/documentation.php | 1 + 2 files changed, 36 insertions(+) create mode 100644 manual/docs/Getting started - Setting table definition - Table options.php diff --git a/manual/docs/Getting started - Setting table definition - Table options.php b/manual/docs/Getting started - Setting table definition - Table options.php new file mode 100644 index 000000000..16635f74d --- /dev/null +++ b/manual/docs/Getting started - Setting table definition - Table options.php @@ -0,0 +1,35 @@ + +Doctrine offers various table options. All table options can be set via Doctrine_Record::option($optionName, $value) +

+For example if you are using Mysql and want to use INNODB tables it can be done as follows: +

+hasColumn('name', 'string'); + + \$this->option('engine', 'INNODB'); + } +} +?>"); +?>

+In the following example we set the collate and character set options: +

+hasColumn('name', 'string'); + + \$this->option('collate', 'utf8_unicode_ci'); + \$this->option('charset', 'utf8'); + } +} +?>"); +?> + diff --git a/manual/documentation.php b/manual/documentation.php index 814bc8252..1851e3cf2 100644 --- a/manual/documentation.php +++ b/manual/documentation.php @@ -102,6 +102,7 @@ $menu = array('Getting started' => 'Introduction', 'Table and class naming', 'Field(Column) naming', + 'Table options', 'Data types and lengths', 'Constraints and validators', 'Default values',