Fix create db
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2021-07-10 17:56:14 +02:00
parent a349ad9fc9
commit 7a8bd45e56
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ if db_host:
'pool_recycle': 200
}
db = SQLAlchemy(app)
from .models import *
from .models import create_all
create_all()