Upgrade from 3.1.x to 3.2.x

Database Structure

This sections presents notes, listed by modules, about the structure of database tables that existed in v3.2.x and changed during development of v3.3.0.

modules_k/dialog

  • table dialog
    • caller cseq number column now has the size varchar(20)
    • callee cseq number column now has the size varchar(20)

SQL Commands

You can use next SQL commands (made for MySQL) to update the structure of existing tables in v3.2.x for v3.3.0:

UPDATE version SET table_version=7 WHERE TABLE_NAME="dialog";
ALTER TABLE dialog MODIFY caller_cseq VARCHAR(255) NOT NULL;
ALTER TABLE dialog MODIFY callee_cseq VARCHAR(255) NOT NULL;

Modules


Navigation

Wiki

Other

QR Code
QR Code install:3.2.x-to-3.3.x (generated for current page)