outq_log missing from schema files

This commit is contained in:
Mike Macgirvin 2022-09-20 06:24:04 +10:00
parent 331eeab9dc
commit d185d8b69f
2 changed files with 2 additions and 0 deletions

View file

@ -829,6 +829,7 @@ CREATE TABLE IF NOT EXISTS `outq` (
`outq_notify` mediumtext NOT NULL,
`outq_msg` mediumtext NOT NULL,
`outq_priority` smallint(6) NOT NULL DEFAULT 0 ,
`outq_log` mediumtext NOT NULL,
PRIMARY KEY (`outq_hash`(191)),
KEY `outq_account` (`outq_account`),
KEY `outq_channel` (`outq_channel`),

View file

@ -849,6 +849,7 @@ CREATE TABLE "outq" (
"outq_notify" text NOT NULL,
"outq_msg" text NOT NULL,
"outq_priority" smallint NOT NULL DEFAULT '0',
"outq_log" text NOT NULL,
PRIMARY KEY ("outq_hash")
);
create index "outq_account" on outq ("outq_account");