Fix typo in readme

':post_version_id_seq' should be ':post_versions_id_seq'.
This commit is contained in:
John Olmsted 2015-01-29 16:34:38 -08:00
parent 763083461d
commit 5ecea16c37
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ If you are using Postgres, you should also define the sequence that your custom
```ruby
class PostVersion < PaperTrail::Version
self.table_name = :post_versions
self.sequence_name = :post_version_id_seq
self.sequence_name = :post_versions_id_seq
end
```