Fix link to section in README

It seems to be case sensitive, change tableName -> tablename.
This commit is contained in:
Vytautas Šaltenis 2014-07-12 13:31:12 +03:00
parent dee9520d4e
commit 3587dbee4d
1 changed files with 1 additions and 1 deletions

View File

@ -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.