Sha256: ae6f8b1713cb252040759beb52cf100b4507d50e95524f1b28411f51946b8791
Contents?: true
Size: 274 Bytes
Versions: 5
Compression:
Stored size: 274 Bytes
Contents
module Arel module Nodes class DeleteStatement attr_accessor :relation, :wheres def initialize @from = nil @wheres = [] end def initialize_copy other super @wheres = @wheres.clone end end end end
Version data entries
5 entries across 5 versions & 1 rubygems