13 lines
201 B
PHP
Executable File
13 lines
201 B
PHP
Executable File
<?php
|
|
class UserLog extends Rails\ActiveRecord\Base
|
|
{
|
|
protected function associations()
|
|
{
|
|
return [
|
|
'belongs_to' => [
|
|
'user'
|
|
]
|
|
];
|
|
}
|
|
}
|