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

[airavata] 01/02: AIRAVATA-2757 Set default charset for profile_service

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch staging
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit 6ef6c03f135399c4c7586b9ebb09a1c9c202b62c
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Apr 23 15:33:36 2018 -0400

    AIRAVATA-2757 Set default charset for profile_service
    
    If default charset is 'utf8', new table CUSTOMIZED_DASHBOARD gets
    created with that charset but existing tables have 'latin1'. This then
    prevents foreign keys from CUSTOMIZED_DASHBOARD to other profile_service
    tables.
---
 .../next/DeltaScripts/profile_service_schema_delta.sql                   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/profile_service_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/profile_service_schema_delta.sql
new file mode 100644
index 0000000..9e63f29
--- /dev/null
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/profile_service_schema_delta.sql
@@ -0,0 +1 @@
+alter database profile_service character set = 'latin1';

-- 
To stop receiving notification emails like this one, please contact
machristie@apache.org.