summaryrefslogtreecommitdiff
path: root/tests/simple_unit/ActiveRecord/records/DepSections.php
blob: 6f37ae3e8effd15315265ecb018308b61e5f935e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
class DepSections extends TActiveRecord
{
	public $department_id;
	public $section_id;
	public $order;

	const TABLE='department_sections';

	public static function finder($className=__CLASS__)
	{
		return parent::finder($className);
	}
}

?>