Rework the submit operation
[clamp.git] / extra / sql / bulkload / create-tables.sql
index 93c80cb..29e0fac 100644 (file)
@@ -23,7 +23,7 @@
         global_properties_json json,
         last_computed_state varchar(255) not null,
         model_properties_json json,
-        svg_representation varchar(255),
+        svg_representation MEDIUMTEXT,
         primary key (name)
     ) engine=InnoDB;
 
@@ -35,7 +35,9 @@
 
     create table micro_service_policies (
        name varchar(255) not null,
+        blueprint_name varchar(255) not null,
         json_representation json not null,
+        model_type varchar(255) not null,
         policy_tosca MEDIUMTEXT not null,
         properties json,
         shared bit not null,