mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 11:06:31 +00:00
Update for 21.7.0-rc1
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE alembic_version (
|
||||
version_num VARCHAR(32) NOT NULL,
|
||||
CONSTRAINT alembic_version_pkc PRIMARY KEY (version_num)
|
||||
@@ -8,8 +6,8 @@ CREATE TABLE alembic_version (
|
||||
-- Running upgrade -> 4105ee839f58
|
||||
|
||||
CREATE TABLE queue_log (
|
||||
id BIGSERIAL NOT NULL,
|
||||
time TIMESTAMP WITHOUT TIME ZONE,
|
||||
id BIGINT NOT NULL AUTO_INCREMENT,
|
||||
time DATETIME,
|
||||
callid VARCHAR(80),
|
||||
queuename VARCHAR(256),
|
||||
agent VARCHAR(80),
|
||||
@@ -23,7 +21,5 @@ CREATE TABLE queue_log (
|
||||
UNIQUE (id)
|
||||
);
|
||||
|
||||
INSERT INTO alembic_version (version_num) VALUES ('4105ee839f58') RETURNING alembic_version.version_num;
|
||||
|
||||
COMMIT;
|
||||
INSERT INTO alembic_version (version_num) VALUES ('4105ee839f58');
|
||||
|
||||
|
Reference in New Issue
Block a user