Sequenzia/app/models/PostVote.php
2013-10-26 18:06:58 -05:00

13 lines
239 B
PHP
Executable File

<?php
class PostVote extends Rails\ActiveRecord\Base
{
protected function associations()
{
return array(
'belongs_to' => array(
'post',
'user'
)
);
}
}