aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Upgrade.md
blob: 11d2466af62786d5c26fce3e2f377658d0654fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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[];
```