dbforge->modify_column('vragen', array( 'score' => array( 'type' => 'DECIMAL', 'constraint' => '4,2', 'unsigned' => TRUE, ), )); $this->dbforge->modify_column('resultaat', array( 'score' => array( 'type' => 'DECIMAL', 'constraint' => '4,2', 'unsigned' => TRUE, ), )); } public function down() { $this->dbforge->modify_column('vragen', array( 'score' => array( 'type' => 'INT', 'constraint' => '6', 'unsigned' => TRUE, ), )); $this->dbforge->modify_column('resultaat', array( 'score' => array( 'type' => 'INT', 'constraint' => '6', 'unsigned' => TRUE, ), )); } }