Corrected uuidgen messages in both create and update database scripts

Minor fix for scripts create and update
messages in uuidgen to 'orm' since that is
the actual database name for this service.

Change-Id: Iebb2dfdff9e0734873d788e8bbf2a23569dde72e
This commit is contained in:
raigax9 2017-09-28 22:33:38 -04:00
parent a3eb0387ff
commit 79f07f39ce
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash
echo Creating database: orm_id echo Creating database: orm
mysql -uroot -p$MYSQL_PASSWORD < ../db_scripts/db_create.sql &> /dev/null mysql -uroot -p$MYSQL_PASSWORD < ../db_scripts/db_create.sql &> /dev/null
echo Done! echo Done!

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash
echo Update database: orm_id echo Update database: orm
mysql -uroot -p$MYSQL_PASSWORD < ../db_scripts/update_db.sql &> /dev/null mysql -uroot -p$MYSQL_PASSWORD < ../db_scripts/update_db.sql &> /dev/null
echo Done! echo Done!