fix(database): only attempt to initialize default workspace if it doesnt exist
parent
6abdf079e6
commit
275bc41477
|
@ -93,4 +93,5 @@ def delete_workspace(workspace_name):
|
|||
|
||||
|
||||
def initialize_db():
|
||||
create_workspace("default")
|
||||
if not exists(path_join(WORKSPACE_DIR, "default")):
|
||||
create_workspace("default")
|
Loading…
Reference in New Issue