9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
|
|
#!/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"
|