Fixed database stuff

This commit is contained in:
WolverinDEV 2020-04-20 12:51:50 +02:00
parent eeca625af6
commit 09d5e97d5d
3 changed files with 5 additions and 3 deletions

@ -1 +1 @@
Subproject commit 1a18e5809c467954c9d46783269387e492312851 Subproject commit ed56014317adc8a30b5a1df15c5a6fc177b76302

View File

@ -88,7 +88,7 @@ VoiceBridge::VoiceBridge(const shared_ptr<WebClient>& owner) : _owner(owner) {
config->logger->callback_argument = this; config->logger->callback_argument = this;
//config->sctp.local_port = 5202; //Fire Fox don't support a different port :D //config->sctp.local_port = 5202; //Fire Fox don't support a different port :D
this->connection = make_unique<rtc::PeerConnection>(config); this->connection = make_unique<rtc::PeerConnection>(config) ;
} }
VoiceBridge::~VoiceBridge() { VoiceBridge::~VoiceBridge() {

View File

@ -44,7 +44,7 @@ if(!result && result.msg().find(ignore) == string::npos){
#define RESIZE_COLUMN(tblName, rowName, size) up vote EXECUTE("Could not change column size", "ALTER TABLE " tblName " ALTER COLUMN " rowName " varchar(" size ")"); #define RESIZE_COLUMN(tblName, rowName, size) up vote EXECUTE("Could not change column size", "ALTER TABLE " tblName " ALTER COLUMN " rowName " varchar(" size ")");
#define CURRENT_DATABASE_VERSION 12 #define CURRENT_DATABASE_VERSION 11
#define CURRENT_PERMISSION_VERSION 3 #define CURRENT_PERMISSION_VERSION 3
#define CLIENT_UID_LENGTH "64" #define CLIENT_UID_LENGTH "64"
@ -412,6 +412,7 @@ ROLLBACK;
CREATE_INDEX2R("conversation_blocks", "server_id", "conversation_id"); CREATE_INDEX2R("conversation_blocks", "server_id", "conversation_id");
db_version(11); db_version(11);
#if 0 /* not yet needed */
case 11: case 11:
/* update the group table */ /* update the group table */
{ {
@ -475,6 +476,7 @@ ROLLBACK;
CREATE_INDEX2R("clients", "serverId", "cldbid"); CREATE_INDEX2R("clients", "serverId", "cldbid");
} }
db_version(12); db_version(12);
#endif
default: default:
break; break;
} }