aboutsummaryrefslogtreecommitdiffstats
path: root/docs/DatabaseTables.md
diff options
context:
space:
mode:
authorMichael Hwang <mhwang@research.att.com>2017-05-09 09:52:15 -0400
committerVijay Venkatesh Kumar <vv770d@att.com>2017-05-10 20:23:54 +0000
commit03b4fd0a6e6bc0ce88b8904cfa01869b74a2f210 (patch)
tree8d76a527ed86807658a879df6153c6c6e73ba971 /docs/DatabaseTables.md
parent473bcb6c7dea189d9481f894b82358f6ec93629b (diff)
[DCAE-16] Merge changes from internal AT&T 1707
Non-functional changes like licensing, pom consolidation, filtering of keywords. Functional changes include support for integration with asdc which caused an API breaking change. Change-Id: I5a52d968c6403a7d35c4bbf49f7ddf7a5ba4428e Signed-off-by: Michael Hwang <mhwang@research.att.com>
Diffstat (limited to 'docs/DatabaseTables.md')
-rw-r--r--docs/DatabaseTables.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/DatabaseTables.md b/docs/DatabaseTables.md
index f3df9e1..30f4f7b 100644
--- a/docs/DatabaseTables.md
+++ b/docs/DatabaseTables.md
@@ -14,16 +14,20 @@ As of version 0.12.0.
Table "public.dcae_service_types"
Column | Type | Modifiers
--------------------+-----------------------------+-----------
+ type_id | character varying | not null
+ type_version | integer | not null
type_name | character varying | not null
owner | character varying | not null
+ blueprint_template | text | not null
vnf_types | character varying[] | not null
service_ids | character varying[] |
service_locations | character varying[] |
- blueprint_template | text | not null
+ asdc_service_id | character varying | not null
+ asdc_resource_id | character varying | not null
created | timestamp without time zone | not null
is_active | boolean | not null
Indexes:
- "pk_type_created" PRIMARY KEY, btree (type_name, created)
+ "pk_type_created" PRIMARY KEY, btree (type_id, created)
```
## `dcae_services`
@@ -40,7 +44,7 @@ Indexes:
Column | Type | Modifiers
----------------+-----------------------------+-----------
service_id | character varying | not null
- type_name | character varying | not null
+ type_id | character varying | not null
vnf_id | character varying | not null
vnf_type | character varying | not null
vnf_location | character varying | not null