From 0f387d9bca2098bbc983c35ff41e5d6652d6bfea Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Mon, 30 Mar 2020 13:29:57 +0200 Subject: [PATCH] Shortening Doctrine Note --- form/form_collections.rst | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/form/form_collections.rst b/form/form_collections.rst index d5d26a873eb..5119e757118 100644 --- a/form/form_collections.rst +++ b/form/form_collections.rst @@ -11,13 +11,7 @@ that Task, right inside the same form. .. note:: - In this article, it's loosely assumed that you're using Doctrine as your - database store. But if you're not using Doctrine, it's all very similar. - There are only a few parts of this tutorial that really care about "persistence". - - If you *are* using Doctrine, you'll need to add the Doctrine metadata, - including the ``ManyToMany`` association mapping definition on the Task's - ``tags`` property. + The example presented here is based on Doctrine. First, suppose that each ``Task`` belongs to multiple ``Tag`` objects. Start by creating a simple ``Task`` class::