From 8bb6dbb5174ec9670db587292ac10f2b6d54a068 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 16 Jan 2007 19:27:33 +0000 Subject: [PATCH] --- lib/Doctrine/Table.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 84a65a512..5b558a396 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -132,12 +132,21 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable * * -- inheritanceMap inheritanceMap is used for inheritance mapping, keys representing columns and values * the column values that should correspond to child classes + * + * -- engine database engine (mysql example: INNODB) + * + * -- charset character set + * + * -- collation */ protected $options = array('name' => null, 'tableName' => null, 'sequenceName' => null, 'inheritanceMap' => array(), 'enumMap' => array(), + 'engine' => null, + 'charset' => null, + 'collation' => null ); /**