RenameDescColumnMigration   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 5 1
1
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
5
class RenameDescColumnMigration extends AbstractMigration
6
{
7
	/**
8
	 * Rename 'desc' field to 'description'. Reserved words suck
9
	 */
10
	public function change()
11
	{
12
		$this->table('todo_checklist')
13
			->renameColumn('desc', 'description');
14
	}
15
}