phpmentoring/webapp

View on GitHub
data/migrations/20150915143127_add_github_username.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use Phinx\Migration\AbstractMigration;

class AddGithubUsername extends AbstractMigration
{
    /**
     * Change Method.
     *
     * More information on this method is available here:
     * http://docs.phinx.org/en/latest/migrations.html#the-change-method
     *
     * Uncomment this method if you would like to use it.
     *
    public function change()
    {
    }
    */
    
    /**
     * Migrate Up.
     */
    public function up()
    {
        $users = $this->table('users');

        $users->addColumn('githubName', 'text', ['null' => true])->update();
    }

    /**
     * Migrate Down.
     */
    public function down()
    {
        $users = $this->table('users');

        $users->removeColumn('githubName');

    }
}