8 lines
153 B
Bash
8 lines
153 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Upgrade DB schema to version used by application. This also initializes table, if they aren't already created.
|
||
|
flask db upgrade
|
||
|
|
||
|
|
||
|
exec "$@"
|