cinder/releasenotes/notes/add-del-volumeTypeAccess-b1c8cb14a9d14db3.yaml
Sheel Rana b2cd356cac Updated "deleted" column of volume_type_access
Below changes are done in this commit:

a. replaced update()
update() is replaced with oslo.db's soft_delete() used in
volume_type_access_remove() function of sqlalchemy.db.api to keep
value of "id" in "deleted" column during volume type access remove
operation.
This bug will be solved after this change.

b. updated db schema
db schema of volume_type_projects if updated.
As tinyint can store maximum 127, "deleted" column type is modified
tinyint->integer so that it can store more than 128 entries in it.

c. release notes
release notes added to prohibit addition or deletion of
volume_type_access to a project during update operation.

UpgradeImpact
Closes-Bug: #1518363

Change-Id: I638a202dfb2b4febf1d623683de22df3b6dc2615
2015-12-30 13:02:16 +00:00

4 lines
239 B
YAML

---
upgrade:
- Adding or removing volume_type_access from any project during DB migration 62 must not be performed.
- When running PostgreSQL it is required to upgrade and restart all the cinder-api services along with DB migration 62.