Add Recette.saison and allow search on it

This commit is contained in:
Claude Paroz 2018-05-26 17:59:13 +02:00
parent d1eef00e7d
commit ff4d7a5810
6 changed files with 73 additions and 4 deletions

View file

@ -52,8 +52,9 @@ WSGI_APPLICATION = 'common.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'recettes',
'USER': 'claude',
}
}