You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sc...@apache.org on 2016/10/04 16:05:00 UTC

airavata git commit: setting the column sizes to 100 in Community User table in Credential Store

Repository: airavata
Updated Branches:
  refs/heads/develop 33c025188 -> d5f825cd1


setting the column sizes to 100 in Community User table in Credential Store


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

Branch: refs/heads/develop
Commit: d5f825cd1b53eaf45d4530bfce3f3d60507ca05b
Parents: 33c0251
Author: scnakandala <su...@gmail.com>
Authored: Tue Oct 4 12:04:56 2016 -0400
Committer: scnakandala <su...@gmail.com>
Committed: Tue Oct 4 12:04:56 2016 -0400

----------------------------------------------------------------------
 .../registry-core/src/main/resources/credstore-mysql.sql       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/d5f825cd/modules/registry/registry-core/src/main/resources/credstore-mysql.sql
----------------------------------------------------------------------
diff --git a/modules/registry/registry-core/src/main/resources/credstore-mysql.sql b/modules/registry/registry-core/src/main/resources/credstore-mysql.sql
index f600f24..24e43e0 100644
--- a/modules/registry/registry-core/src/main/resources/credstore-mysql.sql
+++ b/modules/registry/registry-core/src/main/resources/credstore-mysql.sql
@@ -1,7 +1,7 @@
 CREATE TABLE COMMUNITY_USER (
-  GATEWAY_ID           VARCHAR(256) NOT NULL,
-  COMMUNITY_USER_NAME  VARCHAR(256) NOT NULL,
-  TOKEN_ID             VARCHAR(256) NOT NULL,
+  GATEWAY_ID           VARCHAR(100) NOT NULL,
+  COMMUNITY_USER_NAME  VARCHAR(100) NOT NULL,
+  TOKEN_ID             VARCHAR(100) NOT NULL,
   COMMUNITY_USER_EMAIL VARCHAR(256) NOT NULL,
   PRIMARY KEY (GATEWAY_ID, COMMUNITY_USER_NAME, TOKEN_ID)
 );