View file database/upgrades/20180121204412_change_newchat_in_users.php

File size: 510B
<?php

use Phinx\Migration\AbstractMigration;

class ChangeNewchatInUsers extends AbstractMigration
{
    /**
     * Migrate Up.
     */
    public function up()
    {
        $table = $this->table('users');
        $table->changeColumn('newchat', 'integer', ['null' => true])
            ->save();
    }

    /**
     * Migrate Down.
     */
    public function down()
    {
        $table = $this->table('users');
        $table
            ->changeColumn('newchat', 'integer')
            ->save();
    }
}