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

Commit

Permalink
fix primary key syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dnauck committed Oct 5, 2016
1 parent c934f01 commit 17ba1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/mq.sql/create.pgsql
@@ -1,5 +1,5 @@
CREATE TABLE IF NOT EXISTS ajxp_mq_queues (
channel_name varchar(255) NOT NULL,
content bytea NOT NULL,
constraint pk primary key(channel_name)
primary key(channel_name)
);

0 comments on commit 17ba1bf

Please sign in to comment.