Changes between Version 27 and Version 28 of OracleTestSetup


Ignore:
Timestamp:
Sep 26, 2015, 5:04:33 AM (9 years ago)
Author:
Mariusz Felisiak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OracleTestSetup

    v27 v28  
    5252
    5353    DATABASES = {
    54        'default': {
    55            'ENGINE': 'django.db.backends.oracle',
    56            'NAME': '127.0.0.1:1521/orcl',
    57            'USER': 'django',
    58            'PASSWORD': 'django',
    59            'TEST' : {
    60                'USER': 'default_test',
    61                'TBLSPACE': 'default_test_tbls',
    62                'TBLSPACE_TMP': 'default_test_tbls_tmp',
    63            },
    64       },
    65       'other': {
    66          'ENGINE': 'django.db.backends.oracle',
    67          'NAME': '127.0.0.1:1521/orcl',
    68          'USER': 'django',
    69          'PASSWORD': 'django',
    70          'TEST' : {
     54        'default': {
     55            'ENGINE': 'django.db.backends.oracle',
     56            'NAME': '127.0.0.1:1521/orcl',
     57            'USER': 'django',
     58            'PASSWORD': 'django',
     59            'TEST': {
     60                'USER': 'default_test',
     61                'TBLSPACE': 'default_test_tbls',
     62                'TBLSPACE_TMP': 'default_test_tbls_tmp',
     63            },
     64        },
     65        'other': {
     66            'ENGINE': 'django.db.backends.oracle',
     67            'NAME': '127.0.0.1:1521/orcl',
     68            'USER': 'django',
     69            'PASSWORD': 'django',
     70            'TEST': {
    7171                'USER': 'other_test',
    7272                'TBLSPACE': 'other_test_tbls',
    7373                'TBLSPACE_TMP': 'other_test_tbls_tmp',
    74          },
    75       },
     74            },
     75        },
    7676    }
    7777
Back to Top