aboutsummaryrefslogtreecommitdiffstats
path: root/standalone/src/main/assembly/resources/dbscripts/postgres/uui_create_table.sql
diff options
context:
space:
mode:
Diffstat (limited to 'standalone/src/main/assembly/resources/dbscripts/postgres/uui_create_table.sql')
-rw-r--r--standalone/src/main/assembly/resources/dbscripts/postgres/uui_create_table.sql11
1 files changed, 6 insertions, 5 deletions
diff --git a/standalone/src/main/assembly/resources/dbscripts/postgres/uui_create_table.sql b/standalone/src/main/assembly/resources/dbscripts/postgres/uui_create_table.sql
index 1a29c372..e6a4c1ed 100644
--- a/standalone/src/main/assembly/resources/dbscripts/postgres/uui_create_table.sql
+++ b/standalone/src/main/assembly/resources/dbscripts/postgres/uui_create_table.sql
@@ -153,13 +153,14 @@ CREATE TABLE sort_master (
DROP TABLE IF EXISTS instance_performance;
CREATE TABLE instance_performance
(
- id integer not null,
+ id serial not null
+ constraint instance_performance_pk
+ primary key,
job_id varchar(36),
resource_instance_id varchar(36),
bandwidth numeric,
- date date,
- max_bandwidth numeric,
- CONSTRAINT instance_performance_pk PRIMARY KEY (id)
+ date timestamp,
+ max_bandwidth numeric
);
-- ----------------------------
@@ -174,7 +175,7 @@ CREATE TABLE intent_instance
instance_id varchar(16),
job_id varchar(36),
progress integer,
- status char,
+ status char default 0,
resource_instance_id varchar(36),
name varchar(255),
cloud_point_name varchar(255),