Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created March 7, 2015 21:13
Show Gist options
  • Save glynrob/cb16cac13be2eac15dfa to your computer and use it in GitHub Desktop.
Save glynrob/cb16cac13be2eac15dfa to your computer and use it in GitHub Desktop.
public function change()
{
$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();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment