Skip to content

Commit 24adc20

Browse files
committed
Mutable helper is in ActiveModel
It should be referenced by full qualified name from Active Record.
1 parent 85b0803 commit 24adc20

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

activerecord/lib/active_record/connection_adapters/postgresql/oid/array.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module ConnectionAdapters
55
module PostgreSQL
66
module OID # :nodoc:
77
class Array < Type::Value # :nodoc:
8-
include Type::Helpers::Mutable
8+
include ActiveModel::Type::Helpers::Mutable
99

1010
Data = Struct.new(:encoder, :values) # :nodoc:
1111

activerecord/lib/active_record/connection_adapters/postgresql/oid/hstore.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module ConnectionAdapters
55
module PostgreSQL
66
module OID # :nodoc:
77
class Hstore < Type::Value # :nodoc:
8-
include Type::Helpers::Mutable
8+
include ActiveModel::Type::Helpers::Mutable
99

1010
def type
1111
:hstore

activerecord/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module ConnectionAdapters
55
module PostgreSQL
66
module OID # :nodoc:
77
class LegacyPoint < Type::Value # :nodoc:
8-
include Type::Helpers::Mutable
8+
include ActiveModel::Type::Helpers::Mutable
99

1010
def type
1111
:point

activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module ConnectionAdapters
77
module PostgreSQL
88
module OID # :nodoc:
99
class Point < Type::Value # :nodoc:
10-
include Type::Helpers::Mutable
10+
include ActiveModel::Type::Helpers::Mutable
1111

1212
def type
1313
:point

0 commit comments

Comments
 (0)