Changeset 5004
- Timestamp:
- 04/12/07 20:01:57 (2 years ago)
- Files:
-
- django/trunk/docs/django-admin.txt (modified) (1 diff)
- django/trunk/docs/model-api.txt (modified) (2 diffs)
- django/trunk/docs/tutorial01.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/django-admin.txt
r4978 r5004 333 333 Prints the CREATE TABLE and initial-data SQL statements for the given appnames. 334 334 335 Refer to the description of ``sql initialdata`` for an explanation of how to335 Refer to the description of ``sqlcustom`` for an explanation of how to 336 336 specify initial data. 337 337 django/trunk/docs/model-api.txt
r4985 r5004 1916 1916 statements have been executed. 1917 1917 1918 The SQL files are read by the ``sql initialdata``, ``sqlreset``, ``sqlall`` and1918 The SQL files are read by the ``sqlcustom``, ``sqlreset``, ``sqlall`` and 1919 1919 ``reset`` commands in ``manage.py``. Refer to the `manage.py documentation`_ 1920 1920 for more information. … … 1925 1925 have been created. 1926 1926 1927 .. _`manage.py documentation`: http://www.djangoproject.com/documentation/django_admin/#sql initialdata-appname-appname1927 .. _`manage.py documentation`: http://www.djangoproject.com/documentation/django_admin/#sqlcustom-appname-appname 1928 1928 1929 1929 Database-backend-specific SQL data django/trunk/docs/tutorial01.txt
r4846 r5004 383 383 384 384 * ``python manage.py sqlall polls`` -- A combination of all the SQL from 385 the 'sql', 'sql initialdata', and 'sqlindexes' commands.385 the 'sql', 'sqlcustom', and 'sqlindexes' commands. 386 386 387 387 Looking at the output of those commands can help you understand what's actually
