Class: Scheman::Views::Mysql::Field
- Defined in:
- lib/scheman/views/mysql.rb
Instance Method Summary collapse
Methods inherited from Node
Constructor Details
This class inherits a constructor from Scheman::Views::Mysql::Node
Instance Method Details
#to_s ⇒ Object
253 254 255 256 257 258 |
# File 'lib/scheman/views/mysql.rb', line 253 def to_s str = "`#{name}` #{type}" str << "(#{values})" if has_values? str << " #{qualifiers}" if has_qualifiers? str end |