Просмотр файла upgrade/migrations/20170103144531_add_notify_to_users.php

Размер файла: 364B
<?php

use Phinx\Migration\AbstractMigration;

class AddNotifyToUsers extends AbstractMigration
{
    /**
     * Migrate Up.
     */
    public function change()
    {
        $table = $this->table('users');
        $table->addColumn('notify', 'boolean', [
            'after' => 'privacy',
            'default' => true
        ])
            ->update();
    }
}