summaryrefslogtreecommitdiff
path: root/bin/heat-db-setup
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-04-06 17:16:29 +0000
committerGerrit Code Review <review@openstack.org>2023-04-06 17:16:29 +0000
commit40bf93fbeb35c820ad15dedaa1fad17bc5ffc661 (patch)
treee9d93378b81dbe60c3f29751dbfdb1a7a82dd4d5 /bin/heat-db-setup
parentbbd0e94e07fa1dd656e104bd853ec1b4384cd85e (diff)
parent64621053c298d6f7be97d7735d843e721e5692e9 (diff)
downloadheat-40bf93fbeb35c820ad15dedaa1fad17bc5ffc661.tar.gz
Merge "db: Migrate to alembic"
Diffstat (limited to 'bin/heat-db-setup')
-rwxr-xr-xbin/heat-db-setup2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/heat-db-setup b/bin/heat-db-setup
index b0e39ac74..8df02aa08 100755
--- a/bin/heat-db-setup
+++ b/bin/heat-db-setup
@@ -289,7 +289,7 @@ rm $log_conf
# Do a final sanity check on the database.
-echo "SELECT * FROM migrate_version;" | mysql -u heat --password=${MYSQL_HEAT_PW} heat > /dev/null
+echo "SELECT * FROM alembic_version;" | mysql -u heat --password=${MYSQL_HEAT_PW} heat > /dev/null
if ! [ $? -eq 0 ]
then
echo "Final sanity check failed." >&2