From feed8c0c0fca014ba9861c7432432113203d4a38 Mon Sep 17 00:00:00 2001 From: Fred Cox Date: Fri, 3 Nov 2017 10:00:25 +0200 Subject: [PATCH] Move `schema_filter` option to the correct place Also change the comment, as the option works the opposite of what is described here --- reference/configuration/doctrine.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/reference/configuration/doctrine.rst b/reference/configuration/doctrine.rst index 1f0607631b5..ae22c04be38 100644 --- a/reference/configuration/doctrine.rst +++ b/reference/configuration/doctrine.rst @@ -22,9 +22,7 @@ Full Default Configuration some_custom_type: class: Acme\HelloBundle\MyCustomType commented: true - # If defined, all the tables whose names match this regular expression are ignored - # by the schema tool (in this example, any table name starting with `wp_`) - #schema_filter: '/^(?!wp_)/' + connections: # A collection of different named connections (e.g. default, conn2, etc) @@ -77,6 +75,11 @@ Full Default Configuration mapping_types: # an array of mapping types name: [] + + # If defined, only the tables whose names match this regular expression are managed + # by the schema tool (in this example, any table name not starting with `wp_`) + #schema_filter: '/^(?!wp_)/' + slaves: # a collection of named slave connections (e.g. slave1, slave2)