class Innodb::DataType::BinaryType
Fixed-length binary type.
Attributes
name[R]
width[R]
Public Class Methods
new(base_type, modifiers, properties)
click to toggle source
# File lib/innodb/data_type.rb, line 226 def initialize(base_type, modifiers, properties) @width = modifiers.fetch(0, 1) @name = Innodb::DataType.make_name(base_type, modifiers, properties) end