is there a way to create database from django manage command ? i want create a multitenant Application and need to generate dynamic database configuration for django manage command.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
},
**'another_generated_from_manage_command'**:{
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}