Skip to content

Commit

Permalink
Add upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrau committed May 25, 2017
1 parent a765bd1 commit a344b2e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions UPGRADE_GUIDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Upgrade guide

## v1.5.1 -> v1.5.2

Version 1.5.2 adds are new column to the `impressions` table. If you're on v1.5.1 you need to manually add the new column using

```
add_column :impressions, :params, :text
add_index :impressions, [:impressionable_type, :impressionable_id, :params], :name => "poly_params_request_index", :unique => false
```

before upgrading.

0 comments on commit a344b2e

Please sign in to comment.