forge->addField([ 'id' => [ 'type' => 'VARCHAR', 'constraint' => 128, ], 'ip_address' => [ 'type' => 'VARCHAR', 'constraint' => 45, ], 'timestamp' => [ 'type' => 'INT', 'unsigned' => true, 'default' => 0, ], 'data' => [ 'type' => 'BLOB', 'null' => true, ], ]); $this->forge->addKey('id', true); $this->forge->addKey('timestamp'); $this->forge->createTable('ci_sessions'); } public function down() { $this->forge->dropTable('ci_sessions'); } }