README.md in umbrellio-sequel-plugins-0.4.0.114 vs README.md in umbrellio-sequel-plugins-0.4.0.121

- old
+ new

@@ -300,11 +300,11 @@ Example: ```ruby class User < Sequel::Model - store :data, :first_name + store :data, :first_name end user = User.create(first_name: "John") user.first_name # => "John" user.data # => {"first_name": "John"} @@ -352,10 +352,10 @@ Example: ```ruby user = User.first user.with_lock do - user.update(name: "James") + user.update(name: "James") end ``` ## TimestampMigratorUndoExtension Allows to undo a specific migration