Update for 20.9.0-rc1

This commit is contained in:
Asterisk Development Team
2024-07-11 13:22:48 +00:00
parent 19bbcf0bbf
commit ae55f7f942
9 changed files with 480 additions and 9 deletions

View File

@@ -1641,8 +1641,6 @@ UPDATE alembic_version SET version_num='74dc751dfe8e' WHERE alembic_version.vers
ALTER TABLE ps_transports ADD COLUMN tcp_keepalive_enable BOOL;
ALTER TABLE ps_transports ADD CHECK (tcp_keepalive_enable IN (0, 1));
ALTER TABLE ps_transports ADD COLUMN tcp_keepalive_idle_time INTEGER;
ALTER TABLE ps_transports ADD COLUMN tcp_keepalive_interval_time INTEGER;
@@ -1689,3 +1687,9 @@ ALTER TABLE ps_endpoint_id_ips DROP COLUMN transport;
UPDATE alembic_version SET version_num='bd9c5159c7ea' WHERE alembic_version.version_num = '6c475a93f48a';
-- Running upgrade bd9c5159c7ea -> 2b7c507d7d12
ALTER TABLE queues ADD COLUMN log_restricted_caller_id ENUM('0','1','off','on','false','true','no','yes');
UPDATE alembic_version SET version_num='2b7c507d7d12' WHERE alembic_version.version_num = 'bd9c5159c7ea';

View File

@@ -23,7 +23,7 @@ CREATE TABLE queue_log (
UNIQUE (id)
);
INSERT INTO alembic_version (version_num) VALUES ('4105ee839f58');
INSERT INTO alembic_version (version_num) VALUES ('4105ee839f58') RETURNING alembic_version.version_num;
COMMIT;