1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

updated the enum doc

This commit is contained in:
chtito 2007-01-28 10:13:54 +00:00
parent 1bdd4ba7ca
commit 48a2f50263

View file

@ -4,9 +4,7 @@ class Article extends Doctrine_Record {
$this->hasColumn("title","string", 200); $this->hasColumn("title","string", 200);
// maps to TINYINT on mysql // maps to TINYINT on mysql
$this->hasColumn("section", "enum", 2); $this->hasColumn("section", "enum", 2, array('values' => array("PHP","Python","Java","Ruby")));
$this->setEnumValues("section", array("PHP","Python","Java","Ruby"));
} }
} }
$article = new Article; $article = new Article;