add queue priority
This commit is contained in:
@@ -725,6 +725,7 @@ CREATE TABLE "outq" (
|
||||
"outq_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
|
||||
"outq_notify" text NOT NULL,
|
||||
"outq_msg" text NOT NULL,
|
||||
"outq_priority" smallint NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY ("outq_hash")
|
||||
);
|
||||
create index "outq_account" on outq ("outq_account");
|
||||
@@ -734,6 +735,7 @@ create index "outq_created" on outq ("outq_created");
|
||||
create index "outq_updated" on outq ("outq_updated");
|
||||
create index "outq_async" on outq ("outq_async");
|
||||
create index "outq_delivered" on outq ("outq_delivered");
|
||||
create index "outq_priority" on outq ("outq_priority");
|
||||
|
||||
CREATE TABLE "pconfig" (
|
||||
"id" serial NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user