class ModContext

Public Instance Methods

integer_ranges() click to toggle source
Calls superclass method
# File lib/activefacts/metamodel/datatypes.rb, line 281
def integer_ranges
  [
    ['BIT', 0, 1, 1], 
    ['TINYINT', -2**7, 2**7-1, 8],
  ] +
  super 
end