31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-10 17:22:21 +00:00

Merge pull request #251 from SharkyKZ/patch-1

[4.0] Error in PostgreSQL update SQL
This commit is contained in:
Roland Dalmulder 2020-03-20 21:07:41 +01:00 committed by GitHub
commit 5f4d6e16a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,5 +2,5 @@ CREATE TABLE IF NOT EXISTS "#__patchtester_chain" (
"id" serial NOT NULL,
"insert_id" bigint NOT NULL,
"pull_id" bigint NOT NULL,
PRIMARY KEY (`id`)
PRIMARY KEY ("id")
);