Skip to content

Commit 2229c1c

Browse files
committed
bug #8585 Move schema_filter option to the correct place (mcfedr)
This PR was submitted for the 3.3 branch but it was merged into the 2.7 branch instead (closes #8585). Discussion ---------- Move `schema_filter` option to the correct place Also change the comment, as the option works the opposite of what is described here Commits ------- 7c76a4b Move `schema_filter` option to the correct place
2 parents 9a6bc27 + 7c76a4b commit 2229c1c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

reference/configuration/doctrine.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ Full Default Configuration
2222
some_custom_type:
2323
class: Acme\HelloBundle\MyCustomType
2424
commented: true
25-
# If defined, all the tables whose names match this regular expression are ignored
26-
# by the schema tool (in this example, any table name starting with `wp_`)
27-
#schema_filter: '/^(?!wp_)/'
25+
2826
2927
connections:
3028
# A collection of different named connections (e.g. default, conn2, etc)
@@ -77,6 +75,11 @@ Full Default Configuration
7775
mapping_types:
7876
# an array of mapping types
7977
name: []
78+
79+
# If defined, only the tables whose names match this regular expression are managed
80+
# by the schema tool (in this example, any table name not starting with `wp_`)
81+
#schema_filter: '/^(?!wp_)/'
82+
8083
slaves:
8184
8285
# a collection of named slave connections (e.g. slave1, slave2)

0 commit comments

Comments
 (0)