From 51f6e03110351f5ef33ed82c305271c9ca5fc355 Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos Date: Thu, 8 Jun 2017 16:48:54 -0500 Subject: [PATCH] Fix c_quiz_question changing data type of type field to integer - refs BT#12874 --- .../Schema/V111/Version20170608164500.php | 40 +++++++++++++++++++ .../CourseBundle/Entity/CQuizQuestion.php | 8 ++-- 2 files changed, 44 insertions(+), 4 deletions(-) create mode 100644 app/Migrations/Schema/V111/Version20170608164500.php diff --git a/app/Migrations/Schema/V111/Version20170608164500.php b/app/Migrations/Schema/V111/Version20170608164500.php new file mode 100644 index 0000000000..ef8c0dbad8 --- /dev/null +++ b/app/Migrations/Schema/V111/Version20170608164500.php @@ -0,0 +1,40 @@ +getTable('c_quiz_question') + ->getColumn('type') + ->setType(Type::INTEGER); + } + + /** + * @param \Doctrine\DBAL\Schema\Schema $schema + */ + public function down(Schema $schema) + { + $schema + ->getTable('c_quiz_question') + ->getColumn('type') + ->setType(Type::BOOLEAN); + } +} diff --git a/src/Chamilo/CourseBundle/Entity/CQuizQuestion.php b/src/Chamilo/CourseBundle/Entity/CQuizQuestion.php index e9dde976d1..b082685b41 100644 --- a/src/Chamilo/CourseBundle/Entity/CQuizQuestion.php +++ b/src/Chamilo/CourseBundle/Entity/CQuizQuestion.php @@ -71,9 +71,9 @@ class CQuizQuestion private $position; /** - * @var boolean + * @var int * - * @ORM\Column(name="type", type="boolean", nullable=false) + * @ORM\Column(name="type", type="integer", nullable=false) */ private $type; @@ -208,7 +208,7 @@ class CQuizQuestion /** * Set type * - * @param boolean $type + * @param int $type * @return CQuizQuestion */ public function setType($type) @@ -221,7 +221,7 @@ class CQuizQuestion /** * Get type * - * @return boolean + * @return int */ public function getType() {