class Convergence::Column

Constants

COLUMN_TYPE
FLOATING_POINT_COLUMN_TYPE

Attributes

column_name[RW]
options[RW]
type[RW]

Public Class Methods

new(type, column_name, options = {}) click to toggle source
# File lib/convergence/column.rb, line 38
def initialize(type, column_name, options = {})
  @type = type
  @column_name = column_name
  @options = options
end