Skip to content

Instantly share code, notes, and snippets.

@gregfroese
Created January 29, 2009 19:28
Show Gist options
  • Save gregfroese/54693 to your computer and use it in GitHub Desktop.
Save gregfroese/54693 to your computer and use it in GitHub Desktop.
<?php
class mpUser extends SilkUser {
public function __construct(){
parent::__construct();
}
public function setup() {
$this->create_has_many_association("friends", "Friend", "user_id");
$this->create_has_many_association("activity", "UserActivity", "user_id");
// $this->create_belongs_to_association("activity", "user_activity", "user_id");
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment