Created
March 7, 2015 21:14
-
-
Save glynrob/1fe0ae1e749409bf9b56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function up() | |
{ | |
$users = $this->table('users'); | |
$users->addColumn('first_name', 'string', array('limit' => 30)) | |
->addColumn('last_name', 'string', array('limit' => 30)) | |
->addColumn('created', 'datetime') | |
->addColumn('updated', 'datetime', array('null' => true)) | |
->save(); | |
} | |
public function down() | |
{ | |
$this->dropTable('users'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment