summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-07-24 16:28:31 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-07-24 16:28:31 +0000
commitccd4d8e63d7486317cbaef700f315ea225ceae55 (patch)
treec8bad12fd7ed9399cdeabb41294ab22451159268
parent3c64a0cf738f4ce2447cbfcd7faadfe3fdf783f1 (diff)
downloadsqlalchemy-ccd4d8e63d7486317cbaef700f315ea225ceae55.tar.gz
fixed anchor tag
-rw-r--r--doc/build/content/tutorial.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/content/tutorial.txt b/doc/build/content/tutorial.txt
index 5a0ae8f41..cd443653e 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: