From: Mike Bayer Date: Mon, 24 Jul 2006 16:28:31 +0000 (+0000) Subject: fixed anchor tag X-Git-Tag: rel_0_2_7~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccd4d8e63d7486317cbaef700f315ea225ceae55;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fixed anchor tag --- diff --git a/doc/build/content/tutorial.txt b/doc/build/content/tutorial.txt index 5a0ae8f416..cd443653ec 100644 --- a/doc/build/content/tutorial.txt +++ b/doc/build/content/tutorial.txt @@ -83,7 +83,7 @@ Now, when we tell "metadata" about the tables in our database, we can issue CREA For the purposes of this tutorial, we will stick with "bound" objects, as it makes the code simpler and easier to read. -### Creating a Table {@name=table} +### Creating a Table {@name=table_creating} With `metadata` as our established home for tables, lets make a Table for it: @@ -211,7 +211,7 @@ Result sets also support iteration. We'll show this with a slightly different f (3, u'Fred') (4, u'Harry') -### Table Relationships +### Table Relationships {@name=table_relationships} Lets create a second table, `email_addresses`, which references the `users` table. To define the relationship between the two tables, we will use the `ForeignKey` construct. We will also issue the `CREATE` statement for the table in one step: