From 62a0b7ca40d7810897fce2d1f8eb47e5647a2bf2 Mon Sep 17 00:00:00 2001 From: xuegao Date: Wed, 18 Dec 2019 11:17:53 +0100 Subject: Move jsonRepresentation Move the storage of jsonRepresentation to OperationalPolicy level Issue-ID: CLAMP-582 Change-Id: Id555ebc1f2f04468f7bf0ffd813de7732bcee97f Signed-off-by: xuegao --- extra/sql/bulkload/create-tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extra/sql') diff --git a/extra/sql/bulkload/create-tables.sql b/extra/sql/bulkload/create-tables.sql index 85b8f85f..6e9ff7c8 100644 --- a/extra/sql/bulkload/create-tables.sql +++ b/extra/sql/bulkload/create-tables.sql @@ -23,7 +23,6 @@ dcae_deployment_status_url varchar(255), global_properties_json json, last_computed_state varchar(255) not null, - operational_policy_schema json, svg_representation MEDIUMTEXT, service_uuid varchar(255), primary key (name) @@ -48,6 +47,7 @@ create table operational_policies ( name varchar(255) not null, configurations_json json, + json_representation json not null, loop_id varchar(255) not null, primary key (name) ) engine=InnoDB; -- cgit 1.2.3-korg