Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created March 7, 2015 21:14
Show Gist options
  • Save glynrob/1fe0ae1e749409bf9b56 to your computer and use it in GitHub Desktop.
Save glynrob/1fe0ae1e749409bf9b56 to your computer and use it in GitHub Desktop.
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