User Tools

Site Tools


install:upgrade:5.4.x-to-5.5.0

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision Both sides next revision
install:upgrade:5.4.x-to-5.5.0 [2021/04/01 12:14]
miconda created
install:upgrade:5.4.x-to-5.5.0 [2021/04/27 11:32]
miconda [Renamed Modules]
Line 30: Line 30:
 ==== Renamed Modules ==== ==== Renamed Modules ====
  
-  * none+=== userblacklist to userblocklist ===
  
 +  * https://www.kamailio.org/docs/modules/5.5.x/modules/userblocklist.html
 +
 +Impacted resources:
 +
 +  * database table **globalblacklist** renamed to **globalblocklist** - its definition is now:
 +
 +<code>
 +CREATE TABLE globalblocklist (
 +  id int(10) unsigned NOT NULL AUTO_INCREMENT,
 +  prefix varchar(64) NOT NULL DEFAULT '',
 +  allowlist tinyint(1) NOT NULL DEFAULT 0,
 +  description varchar(255) DEFAULT NULL,
 +  PRIMARY KEY (id),
 +  KEY globalblocklist_idx (prefix)
 +);
 +</code>
 +
 +  * database table **userblacklist** renamed to **userblocklist** - its definition is now:
 +
 +<code>
 +CREATE TABLE userblocklist (
 +  id int(10) unsigned NOT NULL AUTO_INCREMENT,
 +  username varchar(64) NOT NULL DEFAULT '',
 +  domain varchar(64) NOT NULL DEFAULT '',
 +  prefix varchar(64) NOT NULL DEFAULT '',
 +  allowlist tinyint(1) NOT NULL DEFAULT 0,
 +  PRIMARY KEY (id),
 +  KEY userblocklist_idx (username,domain,prefix)
 +);
 +</code>
 ===== Internal Libraries ===== ===== Internal Libraries =====
  
install/upgrade/5.4.x-to-5.5.0.txt ยท Last modified: 2021/10/04 17:40 by henningw