From 3587dbee4de80c637b9b59bc3df90473bfcdfa46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Sat, 12 Jul 2014 13:31:12 +0300 Subject: [PATCH] Fix link to section in README It seems to be case sensitive, change tableName -> tablename. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58510925..77169c52 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ DB.Save(&User{Name: "xxx"}) // table "users" ## Existing Schema -If you have an existing database schema and some of your tables do not follow the conventions, (and you can't rename your table names), please use: [Specifying The Table Name For A Struct Permanently With TableName](#specifying-the-table-name-for-a-struct-permanently-with-tableName). +If you have an existing database schema and some of your tables do not follow the conventions, (and you can't rename your table names), please use: [Specifying The Table Name For A Struct Permanently With TableName](#specifying-the-table-name-for-a-struct-permanently-with-tablename). If your primary key field is different from `id`, you can add a tag to the field structure to specify that this field is a primary key.