createTable('entity', array ( 'id' => array ( 'primary' => true, 'autoincrement' => true, 'type' => 'integer', 'length' => 11, ), ), array ( 'indexes' => array ( ), 'primary' => array ( 0 => 'id', ), )); } public function down() { $this->dropTable('entity'); } }