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

class DepartmentRecord extends TActiveRecord
{
	public $department_id;
	public $name;
	public $description;
	public $active;
	public $order;

	private static $_tablename = 'departments';

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

?>