getTable('customer/address_entity'); $types = array('datetime', 'decimal', 'int', 'text', 'varchar'); $tables = array($this->getTable('customer/entity'), $this->getTable('customer/address_entity')); foreach ($tables as $table) { foreach ($types as $type) { $tableName = $table . '_' . $type; $select = $installer->getConnection()->select() ->from($tableName, array( 'entity_id' => 'entity_id', 'attribute_id' => 'attribute_id', 'rows_count' => 'COUNT(*)')) ->group(array('entity_id', 'attribute_id')) ->having('rows_count > 1'); $query = $installer->getConnection()->query($select); while ($row = $query->fetch()) { $sql = 'DELETE FROM `' . $tableName . '`' . ' WHERE entity_id=? AND attribute_id=?' . ' LIMIT ' . ($row['rows_count'] - 1); $installer->getConnection()->query($sql, array( $row['entity_id'], $row['attribute_id'] )); } $installer->getConnection()->addKey($tableName, 'IDX_ATTRIBUTE_VALUE', array('entity_id', 'attribute_id'), 'unique'); } }