summaryrefslogtreecommitdiff
path: root/tests/simple_unit/ActiveRecord/records/DepartmentRecord.php
blob: 64ab39d0a40fae991459c20f2b87906b2b5e1ba8 (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;

	public static $_tablename = 'departments';

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

?>