blob: c83fdfc25a0bec99d4ed97dec16630c0839e11a5 (
plain)
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
|
<?php
namespace User;
class Attribute extends \Attribute {
#===============================================================================
# Pre-Define database table columns
#===============================================================================
protected $id = FALSE;
protected $slug = FALSE;
protected $username = FALSE;
protected $password = FALSE;
protected $fullname = FALSE;
protected $mailaddr = FALSE;
protected $body = FALSE;
protected $argv = FALSE;
protected $time_insert = FALSE;
protected $time_update = FALSE;
#===============================================================================
# Define database table name
#===============================================================================
const TABLE = 'user';
}
?>
|