Skip to content

Instantly share code, notes, and snippets.

@rafi
Created June 13, 2013 12:39
Show Gist options
  • Save rafi/5773355 to your computer and use it in GitHub Desktop.
Save rafi/5773355 to your computer and use it in GitHub Desktop.
<?php
class Model_User extends Model {
public function initialize()
{
$this->pk_fields = [ 'id' ];
$this->add_fields([
'id' => 'int4',
'account_id' => 'int4',
'type' => 'varchar',
'email' => 'varchar',
'username' => 'varchar',
'password' => 'varchar',
'first_name' => 'varchar',
'middle_name' => 'varchar',
'last_name' => 'varchar',
'phone' => 'varchar',
'created' => 'int',
'modified' => 'int',
'deleted' => 'int',
]);
}
}
<?php
class Model_User extends Model {
protected $_pk_fields = [ 'id' ];
protected $_fields = [
'id' => 'int4',
'account_id' => 'int4',
'type' => 'varchar',
'email' => 'varchar',
'username' => 'varchar',
'password' => 'varchar',
'first_name' => 'varchar',
'middle_name' => 'varchar',
'last_name' => 'varchar',
'phone' => 'varchar',
'created' => 'int',
'modified' => 'int',
'deleted' => 'int',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment