Add migration
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-11-08 16:44:43 +01:00
parent 3475a22d33
commit 58edaadac4
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,10 @@ db_setup() {
bundle exec rake db:setup
}
db_migrate() {
bundle exec rake db:migrate
}
run_web(){
./proc-start web
}
@ -45,4 +49,5 @@ run_web(){
re_use
load_vars
db_setup
db_migrate
run_web