From d2f674b4633f44b8d6f42195cccea97644d75eed Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos Date: Wed, 19 Aug 2015 10:20:49 -0500 Subject: [PATCH] Add status and update_at on skill table - refs BT#10181 --- .../Schema/V110/Version20150819095300.php | 45 +++++++++++++++ src/Chamilo/CoreBundle/Entity/Skill.php | 56 +++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 app/Migrations/Schema/V110/Version20150819095300.php diff --git a/app/Migrations/Schema/V110/Version20150819095300.php b/app/Migrations/Schema/V110/Version20150819095300.php new file mode 100644 index 0000000000..349782966b --- /dev/null +++ b/app/Migrations/Schema/V110/Version20150819095300.php @@ -0,0 +1,45 @@ +getTable('skill'); + + $skillTable->addColumn( + 'status', + \Doctrine\DBAL\Types\Type::INTEGER, + ['default' => 1] + ); + $skillTable->addColumn( + 'updated_at', + \Doctrine\DBAL\Types\Type::DATETIME + ); + } + + /** + * @param Schema $schema + */ + public function down(Schema $schema) + { + $skillTable = $schema->getTable('skill'); + $skillTable->dropColumn('status'); + $skillTable->dropColumn('updated_at'); + } + +} diff --git a/src/Chamilo/CoreBundle/Entity/Skill.php b/src/Chamilo/CoreBundle/Entity/Skill.php index a4f410a3fe..36e304de1f 100644 --- a/src/Chamilo/CoreBundle/Entity/Skill.php +++ b/src/Chamilo/CoreBundle/Entity/Skill.php @@ -54,6 +54,20 @@ class Skill */ private $criteria; + /** + * @var integer + * + * @ORM\Column(name="status", type="integer", nullable=false, options={"default": 1}) + */ + private $status; + + /** + * @var \DateTime + * + * @ORM\Column(name="updated_at", type="datetime", nullable=false) + */ + private $updatedAt; + /** * @var integer * @@ -203,6 +217,48 @@ class Skill return $this->criteria; } + /** + * Set status + * @param integer $status + * @return \Chamilo\CoreBundle\Entity\Skill + */ + public function setStatus($status) + { + $this->status = $status; + + return $this; + } + + /** + * Get status + * @return integer + */ + public function getStatus() + { + return $this->status; + } + + /** + * Set updatedAt + * @param \DateTime $updatedAt The update datetime + * @return \Chamilo\CoreBundle\Entity\Skill + */ + public function setUpdatedAt(\DateTime $updatedAt) + { + $this->updatedAt = $updatedAt; + + return $this; + } + + /** + * Get updatedAt + * @return \DateTime + */ + public function getUpdatedAt() + { + return $this->updatedAt; + } + /** * Get id *