lib/Doctrine/DBAL/Schema/DB2SchemaManager.php 1 location
|
@@ 178-181 (lines=4) @@
|
175 |
|
'onDelete' => $tableForeignKey['on_delete'], |
176 |
|
] |
177 |
|
]; |
178 |
|
} else { |
179 |
|
$foreignKeys[$tableForeignKey['index_name']]['local_columns'][] = $tableForeignKey['local_column']; |
180 |
|
$foreignKeys[$tableForeignKey['index_name']]['foreign_columns'][] = $tableForeignKey['foreign_column']; |
181 |
|
} |
182 |
|
} |
183 |
|
|
184 |
|
return parent::_getPortableTableForeignKeysList($foreignKeys); |
lib/Doctrine/DBAL/Schema/SQLAnywhereSchemaManager.php 1 location
|
@@ 200-203 (lines=4) @@
|
197 |
|
'for_olap_workload' => $tableForeignKey['for_olap_workload'] |
198 |
|
] |
199 |
|
]; |
200 |
|
} else { |
201 |
|
$foreignKeys[$tableForeignKey['index_name']]['local_columns'][] = $tableForeignKey['local_column']; |
202 |
|
$foreignKeys[$tableForeignKey['index_name']]['foreign_columns'][] = $tableForeignKey['foreign_column']; |
203 |
|
} |
204 |
|
} |
205 |
|
|
206 |
|
return parent::_getPortableTableForeignKeysList($foreignKeys); |