Ticket #1765: tutorial01.diff

File tutorial01.diff, 490 bytes (added by nick@…, 18 years ago)

Patch to fix table name in docs/tutorial01.txt

  • tutorial01.txt

     
    310310    );
    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
    316316    );
Back to Top