Defining Entities ================= This tutorial uses the more verbose xml format of defining entities, but any metadata driver will work fine. The ``AdminBundle`` simply interacts with the entities as provided by Doctrine. Model definition ---------------- No we need to create the entities that will be used in the blog: Post ~~~~ .. code-block:: php getTitle(); } public function __construct() { $this->tags = new \Doctrine\Common\Collections\ArrayCollection; $this->comments = new \Doctrine\Common\Collections\ArrayCollection; $this->created_at = new \DateTime("now");; } Tag ~~~ .. code-block:: php getName(); } public function __construct() { $this->posts = new \Doctrine\Common\Collections\ArrayCollection(); } Comment ~~~~~~~ .. code-block:: php getName(); } Generate getter and setter -------------------------- Fill the entities with getters and setters running the command: php app/console doctrine:generate:entities Tutorial Creating Database ----------------- Create the database related to the entities and the mapping running: php app/console doctrine:schema:update --force