summaryrefslogtreecommitdiff
path: root/tests/simple_unit/ActiveRecord/records/DepSections.php
blob: 476371bdfc3ead3da18a73e2a2e0f3be5b2f9dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class DepSections extends TActiveRecord
{
	public $department_id;
	public $section_id;
	public $order;

	public static $_tablename='department_sections';

	public static function finder()
	{
		return self::getRecordFinder('DepSections');
	}
}

?>