Sequenzia/app/models/UserLog.php
2014-01-26 15:43:12 -05:00

13 lines
201 B
PHP
Executable File

<?php
class UserLog extends Rails\ActiveRecord\Base
{
protected function associations()
{
return [
'belongs_to' => [
'user'
]
];
}
}