Add deprecation warning to convertdb

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-05-06 02:29:59 -04:00
parent 00d4406b1f
commit 0e6f34d0ee
5 changed files with 23 additions and 0 deletions

View File

@@ -6,6 +6,9 @@ DEFAULT_COMMON_HOME_VIEW = 'common:home'
DELETE_STALE_UPLOADS_INTERVAL = 60 * 10 # 10 minutes
DJANGO_SQLITE_BACKEND = 'django.db.backends.sqlite3'
MESSAGE_DEPRECATION_WARNING = _(
'This feature has been deprecated and will be removed in a future version.'
)
MESSAGE_SQLITE_WARNING = _(
'Your database backend is set to use SQLite. SQLite should only be used '
'for development and testing, not for production.'