Skip to content

Commit

Permalink
Merge pull request #52 from ekohl/patch-1
Browse files Browse the repository at this point in the history
Refer to the correct table in the README
  • Loading branch information
JBKahn authored Nov 28, 2016
2 parents a6b82b7 + 8489ae8 commit 71c159d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class ShardedCarIDs(TableStrategyModel):

@model_config(sharded=True)
class Car(models.Model):
id = TableShardedIDField(primary_key=True, source_table_name='app.ShardeCarIDs')
id = TableShardedIDField(primary_key=True, source_table_name='app.ShardedCarIDs')
ignition_type = models.CharField(max_length=120)
company = models.ForeignKey('companies.Company')

Expand Down

0 comments on commit 71c159d

Please sign in to comment.