diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-05-04 19:35:30 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-05-04 19:35:30 +0000 |
| commit | a79cbb5fe818eb50de8ba618509594c03cada702 (patch) | |
| tree | d0d746a7ca45702db1069cbb1c830c937e15515f /docs/tutorial01.txt | |
| parent | 583dcdcede2453fd7ff4e4f26222f9e75b46bb8d (diff) | |
Fixed #1765 -- Fixed bug in docs/tutorial01.txt. Thanks, nick@efford.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2832 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
| -rw-r--r-- | docs/tutorial01.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt index 1a74ee2534..725af7a676 100644 --- a/docs/tutorial01.txt +++ b/docs/tutorial01.txt @@ -310,7 +310,7 @@ You should see the following (the CREATE TABLE SQL statements for the polls app) ); CREATE TABLE "polls_choice" ( "id" serial NOT NULL PRIMARY KEY, - "poll_id" integer NOT NULL REFERENCES "polls_polls" ("id"), + "poll_id" integer NOT NULL REFERENCES "polls_poll" ("id"), "choice" varchar(200) NOT NULL, "votes" integer NOT NULL ); |
