mirror of
https://github.com/glmdev/eecs448-lab10
synced 2024-10-27 19:14:00 +00:00
12 lines
221 B
PHP
12 lines
221 B
PHP
<?php
|
|
|
|
namespace app;
|
|
|
|
use common\database\Repository;
|
|
|
|
class UserRepository extends Repository {
|
|
protected $table = 'users';
|
|
protected $primary_key = 'user_id';
|
|
protected $fields = ['user_id', 'username'];
|
|
}
|