blob: ccd31b5a6fe7845068e04fb2b7eb46a4883a453f (
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
|
<?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';
}
|