%PDF- %PDF-
Direktori : /home1/dimen328/libertysa.com.br/admin/modules/blog/app/models/ |
Current File : //home1/dimen328/libertysa.com.br/admin/modules/blog/app/models/pjVote.model.php |
<?php if (!defined("ROOT_PATH")) { header("HTTP/1.1 403 Forbidden"); exit; } class pjVoteModel extends pjAppModel { protected $primaryKey = 'id'; protected $table = 'votes'; protected $schema = array( array('name' => 'id', 'type' => 'int', 'default' => ':NULL'), array('name' => 'category_id', 'type' => 'int', 'default' => ':NULL'), array('name' => 'post_id', 'type' => 'int', 'default' => ':NULL'), array('name' => 'ip', 'type' => 'varchar', 'default' => ':NULL'), array('name' => 'vote_rate', 'type' => 'decimal', 'default' => ':NULL'), array('name' => 'vote_date', 'type' => 'datetime', 'default' => ':NOW()') ); public static function factory($attr=array()) { return new pjVoteModel($attr); } } ?>