summaryrefslogtreecommitdiff
path: root/sql/pg.sql
diff options
context:
space:
mode:
authorEvgeny Khramtsov <ekhramtsov@process-one.net>2019-02-27 13:06:17 +0300
committerEvgeny Khramtsov <ekhramtsov@process-one.net>2019-02-27 13:06:17 +0300
commit7511da0f266e61fa12c640bd418606baca4c78ed (patch)
treeec71e67a273928c7f162f3df3768b39338a373c4 /sql/pg.sql
parentCopy p1_time_compat:unique_timestamp() to misc and make use of it (diff)
Add SQL schemas for MQTT tables
Diffstat (limited to 'sql/pg.sql')
-rw-r--r--sql/pg.sql16
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/pg.sql b/sql/pg.sql
index 250a22d2..eae98d3f 100644
--- a/sql/pg.sql
+++ b/sql/pg.sql
@@ -452,3 +452,19 @@ CREATE TABLE mix_pam (
CREATE UNIQUE INDEX i_mix_pam ON mix_pam (username, channel, service);
CREATE INDEX i_mix_pam_us ON mix_pam (username);
+
+CREATE TABLE mqtt_pub (
+ username text NOT NULL,
+ resource text NOT NULL,
+ topic text NOT NULL,
+ qos smallint NOT NULL,
+ payload bytea NOT NULL,
+ payload_format smallint NOT NULL,
+ content_type text NOT NULL,
+ response_topic text NOT NULL,
+ correlation_data bytea NOT NULL,
+ user_properties bytea NOT NULL,
+ expiry bigint NOT NULL
+);
+
+CREATE UNIQUE INDEX i_mqtt_topic ON mqtt_pub (topic);