array( 'type' => 'VARCHAR', 'constraint' => 35 ), 'token_group' => array( 'type' => 'VARCHAR', 'constraint' => 35 ) ); $this->forge->addField($fields); // create table $this->forge->createTable('group_user'); } public function down() { $this->forge->dropTable('group_user',TRUE); } }