RenameDescColumnMigration::change()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
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
}