Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 06788be

Browse files
committed
pg / sqlite versions
1 parent 6208ba0 commit 06788be

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

core/src/plugins/mq.sql/create.pgsql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CREATE TABLE IF NOT EXISTS ajxp_mq_queues (
2+
channel_name varchar(255) NOT NULL,
3+
content text NOT NULL,
4+
constraint pk primary key(channel_name)
5+
);

core/src/plugins/mq.sql/create.sqlite

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CREATE TABLE IF NOT EXISTS ajxp_mq_queues (
2+
channel_name TEXT NOT NULL PRIMARY KEY,
3+
content text NOT NULL,
4+
);

0 commit comments

Comments
 (0)