Ticket #3589: 3589.diff

File 3589.diff, 1.3 KB (added by Marc Fargas <telenieko@…>, 17 years ago)

patch

  • django/conf/project_template/settings.py

     
    99
    1010MANAGERS = ADMINS
    1111
    12 DATABASE_ENGINE = ''           # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
     12DATABASE_ENGINE = ''           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
    1313DATABASE_NAME = ''             # Or path to database file if using sqlite3.
    1414DATABASE_USER = ''             # Not used with sqlite3.
    1515DATABASE_PASSWORD = ''         # Not used with sqlite3.
  • django/conf/global_settings.py

     
    9999SEND_BROKEN_LINK_EMAILS = False
    100100
    101101# Database connection info.
    102 DATABASE_ENGINE = ''           # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
     102DATABASE_ENGINE = ''           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
    103103DATABASE_NAME = ''             # Or path to database file if using sqlite3.
    104104DATABASE_USER = ''             # Not used with sqlite3.
    105105DATABASE_PASSWORD = ''         # Not used with sqlite3.
Back to Top