9 lines
172 B
Bash
9 lines
172 B
Bash
#!/bin/bash
|
|
|
|
# Run any necessary database migration tasks that should happen while the
|
|
# site is paused here.
|
|
|
|
node app apostrophe-migrations:migrate
|
|
|
|
echo "Site migrated"
|