Comment 1 for bug 885426

Revision history for this message
Patrick Hetu (patrick-hetu) wrote :

FYI, I fixed the bug this way:

sudo -u postgres psql keystone
  keystone=# ALTER TABLE tenants add COLUMN enabled2 boolean;
  ALTER TABLE
  keystone=# ALTER TABLE tenants RENAME enabled TO enabled3;
  ALTER TABLE
  keystone=# ALTER TABLE tenants RENAME enabled2 TO enabled;
  ALTER TABLE
  keystone=# \q