You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2020/09/05 07:52:52 UTC

[airavata] branch develop updated: Adding usage reporting command table to delta scripts

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 5c3dc80  Adding usage reporting command table to delta scripts
5c3dc80 is described below

commit 5c3dc80628d2174fb206ca6c0463172dc26a2fd6
Author: Dimuthu Wannipurage <di...@gmail.com>
AuthorDate: Sat Sep 5 03:52:38 2020 -0400

    Adding usage reporting command table to delta scripts
---
 .../next/DeltaScripts/experimentCatalog_schema_delta.sql           | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/modules/registry/release-migration-scripts/next/DeltaScripts/experimentCatalog_schema_delta.sql b/modules/registry/release-migration-scripts/next/DeltaScripts/experimentCatalog_schema_delta.sql
index 256ecf0..f99e973 100644
--- a/modules/registry/release-migration-scripts/next/DeltaScripts/experimentCatalog_schema_delta.sql
+++ b/modules/registry/release-migration-scripts/next/DeltaScripts/experimentCatalog_schema_delta.sql
@@ -19,3 +19,10 @@
 --
 
 use experiment_catalog;
+
+CREATE TABLE IF NOT exists `GATEWAY_USAGE_REPORTING_COMMAND` (
+  `GATEWAY_ID` varchar(255) NOT NULL,
+  `COMPUTE_RESOURCE_ID` varchar(255) NOT NULL,
+  `COMMAND` longtext NOT NULL,
+  PRIMARY KEY (`GATEWAY_ID`, `COMPUTE_RESOURCE_ID`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
\ No newline at end of file