diff --git a/README.md b/README.md index f426d07..c0ddb60 100644 --- a/README.md +++ b/README.md @@ -149,8 +149,8 @@ When a table is defined with a database default for a field, this gotcha can occ ┌─────────┬─────────┬─────────┬ │ Column │ Type │ Default │ ├─────────┼─────────┼─────────┼ -│ id │ integer │ ... -│ prio │ integer │ 999 +│ id │ integer │ ... | +│ prio │ integer │ 999 | ``` And `hardwares` has a record with a non-default value for `prio`. Say, the record with `id` 1 has a `prio` of `998`. diff --git a/lib/active_record_upsert/version.rb b/lib/active_record_upsert/version.rb index 41a9637..abec158 100644 --- a/lib/active_record_upsert/version.rb +++ b/lib/active_record_upsert/version.rb @@ -1,3 +1,3 @@ module ActiveRecordUpsert - VERSION = "0.11.1" + VERSION = "0.11.2" end