Leave sqlalchemy convert to boolean to the DB SQL type to use.

Closes-Bug: #1457033

Change-Id: I969a4d60aa156ccfff09a58c3a448b5a9619e71f
This commit is contained in:
Romain Chantereau 2015-05-20 15:06:36 +02:00
parent 0acf257464
commit dc1dcbb9c8
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ def upgrade(migrate_engine):
values = {'id': six.text_type(uuid.uuid4()),
'created_at': CREATED_AT,
'deleted_at': None,
'deleted': 0,
'deleted': False,
'volume_id': volume.id,
'attached_host': volume.host,
'instance_uuid': volume.instance_uuid,