Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My migration add_column

class Migration_Add_post_to_post extends CI_Migration {
    public function up() {
        $fields = array(
            'post' => array('type' => 'TEXT')
        );
        $this->dbforge->add_column('posts', $fields);
    }

    public function down() {
        $this->dbforge->drop_column('posts', 'post');
    }
}

Codeigniter throws Database Error when code executes

ERROR: syntax error at or near "Array" LINE 1: ALTER TABLE "posts" ADD Array NOT NULL ^

I found this issue on github https://github.com/EllisLab/CodeIgniter/issues/808. Even though the issue was closed, it seems like the bug still exists except mysql driver.

Any way to walk around that issue ?

share|improve this question
what CI version are you using? – mamdouh alramadan Jan 25 at 5:36
The lastest one - 2.1.3 – Hoan Jan 25 at 5:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.