db create all the time

This commit is contained in:
Vivek Santayana 2022-06-11 15:27:27 +01:00
parent 625ef8883b
commit 9a225543c6

View File

@ -22,8 +22,8 @@ def install_scripts():
if not database_exists(Config.SQLALCHEMY_DATABASE_URI): if not database_exists(Config.SQLALCHEMY_DATABASE_URI):
create_database(Config.SQLALCHEMY_DATABASE_URI) create_database(Config.SQLALCHEMY_DATABASE_URI)
write('system.log', 'No database found. Creating a new database.') write('system.log', 'No database found. Creating a new database.')
with app.app_context(): db.create_all() with app.app_context(): db.create_all()
write('system.log', 'Creating database schema.') write('system.log', 'Creating database schema.')
if not path.isfile(f'./{data}/.encryption.key'): if not path.isfile(f'./{data}/.encryption.key'):
write('system.log', 'No encryption key found. Generating new encryption key.') write('system.log', 'No encryption key found. Generating new encryption key.')
with open(f'./{data}/.encryption.key', 'wb') as key_file: with open(f'./{data}/.encryption.key', 'wb') as key_file: