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

Commit 17ba1bf

Browse files
authored
fix primary key syntax
1 parent c934f01 commit 17ba1bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CREATE TABLE IF NOT EXISTS ajxp_mq_queues (
22
channel_name varchar(255) NOT NULL,
33
content bytea NOT NULL,
4-
constraint pk primary key(channel_name)
4+
primary key(channel_name)
55
);

0 commit comments

Comments
 (0)