Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HotFix] Remove runMigration function from database_creator.sh #39

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions Website/htdocs/mpmanager/database_creator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ function runMigrator()
{
cd ${SOURCE_PATH}
php artisan optimize:clear
php artisan migrator:migrate $DB_NAME $C_ID
php artisan migrator:migrate
}

################################################################################
Expand Down Expand Up @@ -280,11 +280,6 @@ function main()
sedMigrationFiles
echo "Done! " >> ${SOURCE_PATH}/creator.log

echo "Running migrations for new database.. " >> ${SOURCE_PATH}/creator.log
runMigrator
echo "Done! " >> ${SOURCE_PATH}/creator.log


echo "################################ " >> ${SOURCE_PATH}/creator.log
echo "##### Creator Script Ends ###### " >> ${SOURCE_PATH}/creator.log
echo "****************************************************************" >> ${SOURCE_PATH}/creator.log
Expand Down
Loading