Completed
Push — master ( fab0a4...8e249d )
by Jeroen
41:43 queued 16:43
created

20171009115032_drop_objects_entity_table.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
5 View Code Duplication
class DropObjectsEntityTable extends AbstractMigration {
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
6
    /**
7
     * Move objects_entity attributes to metadata
8
     */
9
    public function up() {
10
11
		if (!$this->hasTable('objects_entity') || !$this->hasTable('metadata')) {
12
			return;
13
		}
14
15
		$prefix = $this->getAdapter()->getOption('table_prefix');
16
		$cols = ['title', 'description'];
17
		
18
		$objects_query = "SELECT * FROM {$prefix}objects_entity LIMIT 25";
19
		while ($rows = $this->fetchAll($objects_query)) {
20
			foreach ($rows as $row) {
21
				foreach ($cols as $col) {
22
					
23
					// remove existing metadata... attributes are more important
24
					$this->execute("
25
						DELETE FROM {$prefix}metadata
26
						WHERE entity_guid = {$row['guid']} AND
27
						name = '{$col}'
28
					");
29
					
30
					$this->insert('metadata', [
31
						'entity_guid' => $row['guid'],
32
						'name' => $col,
33
						'value' => $row[$col],
34
						'value_type' => 'text',
35
						'owner_guid' => 0,
36
						'access_id' => 2,
37
						'time_created' => time(),
38
						'enabled' => 'yes',
39
					]);
40
				}
41
				
42
				// remove from objects so it does not get processed again in the next while loop
43
				$this->execute("
44
					DELETE FROM {$prefix}objects_entity
45
					WHERE guid = {$row['guid']}
46
				");
47
			}
48
		}
49
		
50
		// all data migrated, so drop the table
51
		$this->dropTable('objects_entity');
52
    }
53
}
54