Skip to content

Commit

Permalink
postgres-new.sql fixed missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Feb 21, 2023
1 parent d94e55f commit 8485220
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/sql/native-new/postgres-new-upgrade.sql
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ CREATE TABLE m_simulation_result_processed_object (
transactionId TEXT,
focusRecordId BIGINT,

PRIMARY KEY (ownerOid, cid)
PRIMARY KEY (ownerOid, cid)
) PARTITION BY LIST(ownerOid);

CREATE TABLE m_simulation_result_processed_object_default PARTITION OF m_simulation_result_processed_object DEFAULT;
Expand Down
4 changes: 2 additions & 2 deletions config/sql/native-new/postgres-new.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2010-2022 Evolveum and contributors
* Copyright (C) 2010-2023 Evolveum and contributors
*
* This work is dual-licensed under the Apache License 2.0
* and European Union Public License. See LICENSE file for details.
Expand Down Expand Up @@ -1916,7 +1916,7 @@ CREATE TABLE m_simulation_result_processed_object (
objectBefore BYTEA,
objectAfter BYTEA,
transactionId TEXT,
focusRecordId BIGINT
focusRecordId BIGINT,

PRIMARY KEY (ownerOid, cid)
) PARTITION BY LIST(ownerOid);
Expand Down

0 comments on commit 8485220

Please sign in to comment.