Test Failed
Push — master ( e3c39f...fe570d )
by Mihail
07:20
created

Updates/update_cms_302-2017-06-11-11-27-29.php (1 issue)

1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class update_cms_302.
8
 */
9
class update_cms_302 extends Migration implements MigrationInterface
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
10
{
11
    /**
12
     * Execute actions when migration is up
13
     * @return void
14
     */
15
    public function up()
16
    {
17
        if ($this->getSchema()->hasColumn('user_recoveries', 'password')) {
18
            $this->getSchema()->table('user_recoveries', function ($table) {
19
                $table->dropColumn('password');
20
            });
21
        }
22
        parent::up();
23
    }
24
25
    /**
26
     * Seed created table via up() method with some data
27
     * @return void
28
     */
29
    public function seed() {}
30
31
    /**
32
     * Execute actions when migration is down
33
     * @return void
34
     */
35
    public function down()
36
    {
37
        if (!$this->getSchema()->hasColumn('user_recoveries', 'password')) {
38
            $this->getSchema()->table('user_recoveries', function ($table) {
39
                $table->string('password', 512);
40
            });
41
        }
42
        parent::down();
43
    }
44
}