m171215_163223_lowercase_emails   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 3
dl 0
loc 10
c 1
b 0
f 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A safeUp() 0 3 1
A safeDown() 0 3 1
1
<?php
2
3
use yii\db\Migration;
4
5
class m171215_163223_lowercase_emails extends Migration
6
{
7
    public function safeUp()
8
    {
9
      $this->execute('UPDATE "user" SET email=lower(email);');
10
    }
11
12
    public function safeDown()
13
    {
14
        echo "You don't want this to be reversed. Continuing...";
15
    }
16
}
17