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

class SimpleUser extends TActiveRecord
{
	public $username;

	public static $_tablename='simple_users';

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

?>