class ActiveRecord::ConnectionAdapters::SQLServer::Type::VarbinaryMax
Public Class Methods
Source
# File lib/active_record/connection_adapters/sqlserver/type/varbinary_max.rb, line 8 def initialize(**args) super @limit = 2_147_483_647 end
Calls superclass method
ActiveRecord::ConnectionAdapters::SQLServer::Type::Varbinary::new
Public Instance Methods
Source
# File lib/active_record/connection_adapters/sqlserver/type/varbinary_max.rb, line 17 def sqlserver_type "varbinary(max)" end
Source
# File lib/active_record/connection_adapters/sqlserver/type/varbinary_max.rb, line 13 def type :binary end