diff options
Diffstat (limited to 'core/namespace/ORM/Entities/Post.php')
-rw-r--r-- | core/namespace/ORM/Entities/Post.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/core/namespace/ORM/Entities/Post.php b/core/namespace/ORM/Entities/Post.php index e6bff36..080f01f 100644 --- a/core/namespace/ORM/Entities/Post.php +++ b/core/namespace/ORM/Entities/Post.php @@ -3,12 +3,13 @@ namespace ORM\Entities; use ORM\Entity; class Post extends Entity { - protected $id = FALSE; - protected $user = FALSE; - protected $slug = FALSE; - protected $name = FALSE; - protected $body = FALSE; - protected $argv = FALSE; + protected $id = FALSE; + protected $user = FALSE; + protected $category = FALSE; + protected $slug = FALSE; + protected $name = FALSE; + protected $body = FALSE; + protected $argv = FALSE; protected $time_insert = FALSE; protected $time_update = FALSE; } |