mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Update for 21.4.0-rc1
This commit is contained in:
@@ -1643,8 +1643,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;
|
||||
@@ -1691,3 +1689,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';
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -31,7 +31,7 @@ CREATE TABLE cdr (
|
||||
sequence INTEGER
|
||||
);
|
||||
|
||||
INSERT INTO alembic_version (version_num) VALUES ('210693f3123d');
|
||||
INSERT INTO alembic_version (version_num) VALUES ('210693f3123d') RETURNING alembic_version.version_num;
|
||||
|
||||
-- Running upgrade 210693f3123d -> 54cde9847798
|
||||
|
||||
|
@@ -272,7 +272,7 @@ CREATE TABLE musiconhold (
|
||||
PRIMARY KEY (name)
|
||||
);
|
||||
|
||||
INSERT INTO alembic_version (version_num) VALUES ('4da0c5f79a9c');
|
||||
INSERT INTO alembic_version (version_num) VALUES ('4da0c5f79a9c') RETURNING alembic_version.version_num;
|
||||
|
||||
-- Running upgrade 4da0c5f79a9c -> 43956d550a44
|
||||
|
||||
@@ -1813,5 +1813,11 @@ 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 ast_bool_values;
|
||||
|
||||
UPDATE alembic_version SET version_num='2b7c507d7d12' WHERE alembic_version.version_num = 'bd9c5159c7ea';
|
||||
|
||||
COMMIT;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -27,7 +27,7 @@ ALTER TABLE voicemail_messages ADD CONSTRAINT voicemail_messages_dir_msgnum PRIM
|
||||
|
||||
CREATE INDEX voicemail_messages_dir ON voicemail_messages (dir);
|
||||
|
||||
INSERT INTO alembic_version (version_num) VALUES ('a2e9769475e');
|
||||
INSERT INTO alembic_version (version_num) VALUES ('a2e9769475e') RETURNING alembic_version.version_num;
|
||||
|
||||
-- Running upgrade a2e9769475e -> 39428242f7f5
|
||||
|
||||
|
Reference in New Issue
Block a user