1
0
mirror of synced 2025-03-06 21:06:16 +03:00

Use "quoted" from existing data if exists

In order to keep that information for inheritance mapping.
This commit is contained in:
Luís Cobucci 2017-04-30 18:51:26 +02:00
parent 942bb6cb1f
commit 4ebf27de35
No known key found for this signature in database
GPG Key ID: EC61C5F01750ED3C

View File

@ -2303,6 +2303,10 @@ class ClassMetadataInfo implements ClassMetadata
$this->table['name'] = $table['name'];
}
if (isset($table['quoted'])) {
$this->table['quoted'] = $table['quoted'];
}
if (isset($table['schema'])) {
$this->table['schema'] = $table['schema'];
}