|
@@ -123,7 +123,7 @@ class ONUTemplate implements TenancyIdTraitInterface
|
|
|
protected $base = false;
|
|
|
|
|
|
/**
|
|
|
- * @ORM\Column(type="boolean", nullable=true, options={"default": true})
|
|
|
+ * @ORM\Column(type="boolean", nullable=true, columnDefinition="BOOLEAN DEFAULT TRUE")
|
|
|
*/
|
|
|
protected $catv = true;
|
|
|
|
|
@@ -507,4 +507,26 @@ class ONUTemplate implements TenancyIdTraitInterface
|
|
|
return $this->onuProfile;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Set catv
|
|
|
+ *
|
|
|
+ * @param boolean $e
|
|
|
+ * @return ONUTemplate
|
|
|
+ */
|
|
|
+ public function setCatv($e)
|
|
|
+ {
|
|
|
+ $this->catv = $e;
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Get catv
|
|
|
+ *
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public function getCatv()
|
|
|
+ {
|
|
|
+ return $this->catv;
|
|
|
+ }
|
|
|
+
|
|
|
}
|