protected $_databaseType = 'text';
protected $_databaseUnique = false;
protected $_databaseIndex = false;
- protected $_translatable = true;
+ protected $_translatable = false;
protected $_databaseAttributes = [];
/**
public function getDefaultAttributes()
{
return ['type' => $this->_adminType, 'column' => false, 'form' => 'both', 'rules' => '',
- 'fillable' => true, 'guarded' => false, 'hidden' => false, 'translatable' => $this->_translatable];
+ 'fillable' => true, 'guarded' => false, 'hidden' => false, 'translatable' => $this->_translatable,
+ 'column_type' => 'text'];
}
public function __construct($attributes)