tables from legacy to new through Django (with minimal cleaning to have the import go through) and removing migrations from submit and liaisons as they interfere with the clean slate of the new database, adjusting IPR model to add null=True on fields with nulls in the database - Legacy-Id: 3778
14 lines
362 B
Python
14 lines
362 B
Python
# Standard settings except we use SQLite, this is useful for speeding
|
|
# up tests that depend on the test database, try for instance:
|
|
#
|
|
# ./manage.py test --settings=settings_sqlitetest idrfc.ChangeStateTestCase
|
|
#
|
|
|
|
from settings import *
|
|
DATABASES = {
|
|
'default': {
|
|
'NAME': 'test.db',
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
},
|
|
}
|