You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2018/09/05 11:28:21 UTC

[2/2] syncope git commit: [SYNCOPE-1234] Fixing column name

[SYNCOPE-1234] Fixing column name


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/8ebd80aa
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/8ebd80aa
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/8ebd80aa

Branch: refs/heads/master
Commit: 8ebd80aab9b02eecf703d20f5c7b99b9412bbfc6
Parents: 8de644b
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Wed Sep 5 13:28:02 2018 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Wed Sep 5 13:28:13 2018 +0200

----------------------------------------------------------------------
 .../java/org/apache/syncope/core/upgrade/GenerateUpgradeSQL.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/8ebd80aa/core/upgrade/src/main/java/org/apache/syncope/core/upgrade/GenerateUpgradeSQL.java
----------------------------------------------------------------------
diff --git a/core/upgrade/src/main/java/org/apache/syncope/core/upgrade/GenerateUpgradeSQL.java b/core/upgrade/src/main/java/org/apache/syncope/core/upgrade/GenerateUpgradeSQL.java
index cf0a924..1fe72b4 100644
--- a/core/upgrade/src/main/java/org/apache/syncope/core/upgrade/GenerateUpgradeSQL.java
+++ b/core/upgrade/src/main/java/org/apache/syncope/core/upgrade/GenerateUpgradeSQL.java
@@ -378,7 +378,7 @@ public final class GenerateUpgradeSQL {
                 while (rs.next()) {
                     String realmId = rs.getString(1);
                     String actionClassName = rs.getString(2);
-                    OUT.write("INSERT INTO RealmAction(task_id,implementation_id) VALUES("
+                    OUT.write("INSERT INTO RealmAction(realm_id,implementation_id) VALUES("
                             + "'" + realmId + "',"
                             + "'" + actionClassName + "');\n");
                 }