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',