Skip to content

Commit

Permalink
Fixed #1765 -- Fixed bug in docs/tutorial01.txt. Thanks, nick@efford.net
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2832 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed May 4, 2006
1 parent 583dcdc commit a79cbb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorial01.txt
Expand Up @@ -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
);
Expand Down

0 comments on commit a79cbb5

Please sign in to comment.