Changeset 93
- Timestamp:
- 07/15/05 22:48:36 (3 years ago)
- Files:
-
- django/trunk/django/bin/django-admin.py (modified) (1 diff)
- django/trunk/django/conf/project_template/settings/main.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/bin/django-admin.py
r88 r93 272 272 for sql in get_sql_create(core) + get_sql_create(auth) + get_sql_initial_data(core) + get_sql_initial_data(auth): 273 273 cursor.execute(sql) 274 cursor.execute("INSERT INTO %s (domain, name) VALUES ('mysite.com', 'My Django site')" % core.Site._meta.db_table) 274 275 except Exception, e: 275 276 sys.stderr.write("Error: The database couldn't be initialized. Here's the full exception:\n%s\n" % e) django/trunk/django/conf/project_template/settings/main.py
r83 r93 17 17 DATABASE_HOST = '' # Set to empty string for localhost 18 18 19 SITE_ID = 1 20 19 21 # Absolute path to the directory that holds media. 20 22 # Example: "/home/media/media.lawrence.com/"
