I'm using vokuro's application and when I try to add class member variable as new column in database it's not working. The problem is: I have some variables defined there as vokuro's default but when I add new variables with same name as table column the vaule defined in not enter to table field
//this is users.php model
<code><?php namespace Vokuro\Models;
use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Validator\Uniqueness; use Vokuro\Mail\Mail; class Users extends Model {
/**
 *
 * @var integer
 */
public $id;
/**
 *
 * @var string
 */
public $name;
/**
 *
 * @var string
 */
public $email;
/**
 *
 * @var string
 */
public $password;
/**
 *
 * @var string
 */
public $mustChangePassword;
/**
 *
 * @var string
 */
public $profilesId;
/**
 *
 * @var string
 */
public $banned;
/**
 *
 * @var string
 */
public $suspended;
/**
 *
 * @var string
 */
public $active;
/**
 *
 * @var varchar (30)
 */
public $activationKey;
/**
 *
 * @var bolean (default: 0)
 */
public $activated;</code>
Here is the table: https://prntscr.com/9sqbss