From 39f762c9c67ae3c1fc60f9af857f3c12e6074b9e Mon Sep 17 00:00:00 2001 From: utapyngo Date: Tue, 26 May 2020 18:00:13 +0700 Subject: [PATCH] Add MULTILINE field to test #396 manually --- example/cheeseshop/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/example/cheeseshop/settings.py b/example/cheeseshop/settings.py index ca03d995..6a88a856 100644 --- a/example/cheeseshop/settings.py +++ b/example/cheeseshop/settings.py @@ -111,6 +111,7 @@ 'MUSICIANS': (4, 'number of musicians inside the shop'), 'DATE_ESTABLISHED': (date(1972, 11, 30), "the shop's first opening"), 'MY_SELECT_KEY': ('yes', 'select yes or no', 'yes_no_null_select'), + 'MULTILINE': ('Line one\nLine two', 'multiline string'), } CONSTANCE_BACKEND = 'constance.backends.database.DatabaseBackend'