blob: 7a0063eb685a21a1e69b64d2eb0be4c55bcc97e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* @license GPL2 or any later version
*
* @property string $id alias column for tag_hash
* @property string $studygroup_id database column
* @property string $stgteil_id database column
* @property int $mkdate database column
*
*/
class StudygroupStgteil extends SimpleORMap
{
protected static function configure($config = [])
{
$config['db_table'] = 'studygroup_stgteil';
parent::configure($config);
}
}
|