Archived
1
0
Fork 0

dbmigrate: 20180607222058_user_remove_github_user.php

This commit is contained in:
Henrik Hautakoski 2018-06-08 00:22:40 +02:00
parent 25d8e712e4
commit 3d5481ed80

View file

@ -0,0 +1,14 @@
<?php
use Phinx\Migration\AbstractMigration;
class UserRemoveGithubUser extends AbstractMigration
{
public function up()
{
$this->table('user')
->removeColumn('github_user')
->save();
}
}