aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/update_statement.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes/update_statement.rb')
-rw-r--r--lib/arel/nodes/update_statement.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/arel/nodes/update_statement.rb b/lib/arel/nodes/update_statement.rb
index 288e9f4676..c08f1b2c5e 100644
--- a/lib/arel/nodes/update_statement.rb
+++ b/lib/arel/nodes/update_statement.rb
@@ -2,13 +2,15 @@ module Arel
module Nodes
class UpdateStatement < Arel::Nodes::Node
attr_accessor :relation, :wheres, :values, :orders, :limit
+ attr_accessor :key
def initialize
@relation = nil
@wheres = []
@values = []
- @orders = []
- @limit = nil
+ @orders = []
+ @limit = nil
+ @key = nil
end
def initialize_copy other