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

class SqliteUsers extends TActiveRecord
{
	public $username;
	public $password;
	public $email;

	private static $_tablename='users';

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

?>