Changeset 4804
- Timestamp:
- 08/25/08 14:42:53 (19 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Export.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Export.php
r4796 r4804 1153 1153 $build = array(); 1154 1154 foreach ($connections as $connectionName => $sql) { 1155 $build[$connectionName] = array_ merge($sql['create_tables'], $sql['create_sequences'], $sql['create_indexes'], $sql['alters']);1155 $build[$connectionName] = array_unique(array_merge($sql['create_tables'], $sql['create_sequences'], $sql['create_indexes'], $sql['alters'])); 1156 1156 } 1157 1157 … … 1159 1159 $new = array(); 1160 1160 foreach($build as $connectionname => $sql) { 1161 $new = array_ merge($new, $sql);1161 $new = array_unique(array_merge($new, $sql)); 1162 1162 } 1163 1163 $build = $new;