Arrange the lines of code below to represent a valid database setting. Use indentation where needed.
Tip: Keep in mind the example we have shown you in the theory part!
Arrange the lines of code below to represent a valid database setting. Use indentation where needed.
Tip: Keep in mind the example we have shown you in the theory part!
'ENGINE': 'django.db.backends.sqlite3',
DATABASES = {
'default': {
}
}
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
Create a free account to access the full topic