View file upgrade/migrations/20161214200647_change_fields_in_bank.php

File size: 454B
<?php

use Phinx\Migration\AbstractMigration;

class ChangeFieldsInBank extends AbstractMigration
{
    /**
     * Migrate Up.
     */
    public function up()
    {
        $table = $this->table('bank');
        if ($table->exists()) {
            $users = $this->table('bank');
            $users->changeColumn('time', 'integer')
                ->save();
        }
    }

    /**
     * Migrate Down.
     */
    public function down()
    {

    }
}