1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #981 -- documented the SQL initial data insert files.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2942 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick
2006-05-19 03:37:50 +00:00
parent 026d8c6f08
commit 21dd8e272b
2 changed files with 29 additions and 0 deletions

View File

@@ -200,6 +200,9 @@ sqlall [appname appname ...]
Prints the CREATE TABLE and initial-data SQL statements for the given appnames.
Refer to the description of ``sqlinitialdata`` for an explanation of how to
specify seed data.
sqlclear [appname appname ...]
--------------------------------------
@@ -215,6 +218,14 @@ sqlinitialdata [appname appname ...]
Prints the initial INSERT SQL statements for the given appnames.
This command will read any files under ``<appname>/sql/`` that have the same
name as the lower-cased version of a model name (so if your app includes a
model called ``Poll``, the file ``poll.sql`` will be read). These files are
expected to be valid SQL files and their contents are piped into the database
after all of the models' table creation statements have been executed. This
can be used to populate the tables with any necessary initial records or test
data.
sqlreset [appname appname ...]
--------------------------------------