-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathusers_model.php
More file actions
executable file
·48 lines (44 loc) · 914 Bytes
/
users_model.php
File metadata and controls
executable file
·48 lines (44 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
use munkireport\models\MRModel as Eloquent;
class Users_model extends Eloquent
{
protected $table = 'users';
protected $fillable = [
'serial_number',
'real_name',
'ard_priv',
'node_location',
'password_hint',
'generated_uuid',
'home_directory',
'primary_group_id',
'record_name',
'group_memership',
'administrator',
'ssh_access',
'screenshare_access',
'unique_id',
'user_shell',
'meta_record_name',
'email_address',
'smb_group_rid',
'smb_home',
'smb_home_drive',
'smb_primary_group_sid',
'smb_sid',
'smb_script_path',
'original_node_name',
'primary_nt_domain',
'copy_timestamp',
'smb_password_last_set',
'creation_time',
'failed_login_count',
'failed_login_timestamp',
'password_last_set_time',
'last_login_timestamp',
'password_history_depth',
'linked_full_name',
'linked_timestamp',
];
public $timestamps = false;
}