diff options
author | Michael Hwang <mhwang@research.att.com> | 2017-02-14 15:10:16 +0000 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2017-08-23 13:18:27 -0400 |
commit | ac853c1e7186b10e34e392918af31e4ac62b45c2 (patch) | |
tree | 5b0acebf2704317cd9fe86545313e68771bad04f /docs/Upgrade.md | |
parent | 19488409d66aa5bbbc2856022f1187ce3f563b83 (diff) |
Make first commit
Transferring from original dcae project
Issue-Id: DCAEGEN2-45
Change-Id: If8500f4a120ec2d27a714c8917f163beb57ee64c
Signed-off-by: Michael Hwang <mhwang@research.att.com>
Diffstat (limited to 'docs/Upgrade.md')
-rw-r--r-- | docs/Upgrade.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/Upgrade.md b/docs/Upgrade.md new file mode 100644 index 0000000..11d2466 --- /dev/null +++ b/docs/Upgrade.md @@ -0,0 +1,13 @@ +# Upgrade Guide - DCAE Inventory +*Last update: 2016-08-19* + +## 0.13.0 -> 1.0.0 + +Requires a database table alteration if you wish to reuse an existing database table generated by DCAE inventory v0.13.0. The new schema is backwards compatible and safe for v0.13.0 records. + +Run the following SQL commands for the target Postgres DCAE inventory database: + +``` +alter table dcae_service_types add column service_ids varchar[]; +alter table dcae_service_types add column service_locations varchar[]; +``` |