From ac59db67778759e4408d5b65e4b5f14992dec2e6 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Sun, 1 Apr 2018 17:04:43 +0200 Subject: [PATCH] Minor typo --- doctrine.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doctrine.rst b/doctrine.rst index 48231c5bec4..7d0737f5fd4 100644 --- a/doctrine.rst +++ b/doctrine.rst @@ -272,7 +272,7 @@ knows that the first migration was already executed earlier. Behind the scenes, automatically manages a ``migration_versions`` table to track this. Each time you make a change to your schema, run these two commands to generate the -migration and then execute it. Be sure to commit the migration files and run execute +migration and then execute it. Be sure to commit the migration files and execute them when you deploy. .. _doctrine-generating-getters-and-setters: @@ -316,7 +316,7 @@ then go to the Code -> Generate menu and select "Getters and Setters":: .. tip:: - Typically you won't need a ``setId()`` method: Doctrine will set this for you + Typically you won't need a ``setId()`` method: Doctrine will set the ID automatically. Persisting Objects to the Database