This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Sequenzia/app/models/UserLog.php

13 lines
201 B
PHP
Raw Normal View History

2014-01-26 21:43:12 +01:00
<?php
class UserLog extends Rails\ActiveRecord\Base
{
protected function associations()
{
return [
'belongs_to' => [
'user'
]
];
}
}