Django

Code

Changeset 2832

Show
Ignore:
Timestamp:
05/04/06 14:35:30 (2 years ago)
Author:
adrian
Message:

Fixed #1765 -- Fixed bug in docs/tutorial01.txt. Thanks, nick@efford.net

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial01.txt

    r2826 r2832  
    311311    CREATE TABLE "polls_choice" ( 
    312312        "id" serial NOT NULL PRIMARY KEY, 
    313         "poll_id" integer NOT NULL REFERENCES "polls_polls" ("id"), 
     313        "poll_id" integer NOT NULL REFERENCES "polls_poll" ("id"), 
    314314        "choice" varchar(200) NOT NULL, 
    315315        "votes" integer NOT NULL