Skip to content

Instantly share code, notes, and snippets.

@ggoodman
Created May 1, 2009 17:40
Show Gist options
  • Save ggoodman/105147 to your computer and use it in GitHub Desktop.
Save ggoodman/105147 to your computer and use it in GitHub Desktop.
<?php
class User extends FAEntity {
public function setTableDefinition() {
$this->setTableName('user')
$this->hasColumn('id', array(
'primary' => TRUE,
'autoIncrement' => TRUE,
));
$this->hasColumn('username');
$this->hasColumn('password');
$this->hasColumn('name');
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment