Remove unused SQL initialize function

This commit is contained in:
Gregoo 2025-01-24 10:37:03 +01:00
parent c075b525a8
commit eaa14d2341

View File

@ -345,14 +345,6 @@ class BrickSQL(object):
# Info
logger.info('The database has been dropped')
# Initialize the database
@staticmethod
def initialize() -> None:
BrickSQL().executescript('migrations/init')
# Info
logger.info('The database has been initialized')
# Replace the database with a new file
@staticmethod
def upload(file: FileStorage, /) -> None: