Module Sequel::Plugins::UnlimitedUpdate
In: lib/sequel/plugins/unlimited_update.rb

The unlimited_update plugin is designed to work around a MySQL warning in replicated environments, which occurs if you issue an UPDATE with a LIMIT clause.

Usage:

  # Make all model subclass not use a limit for update
  Sequel::Model.plugin :unlimited_update

  # Make the Album class not use a limit for update
  Album.plugin :unlimited_update

Classes and Modules

Module Sequel::Plugins::UnlimitedUpdate::InstanceMethods

[Validate]