blob: 20aafaeb3193815f31938b9ca6146c8aecec983d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace Post;
class Attribute extends \Attribute {
#===============================================================================
# Pre-Define database table columns
#===============================================================================
protected $id = FALSE;
protected $user = FALSE;
protected $slug = FALSE;
protected $name = FALSE;
protected $body = FALSE;
protected $argv = FALSE;
protected $time_insert = FALSE;
protected $time_update = FALSE;
#===============================================================================
# Define database table name
#===============================================================================
const TABLE = 'post';
}
|